PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Thu May 02, 2024 1:06 am

All times are UTC


Forum rules


Please read this before posting on this forum: Forum Rules



Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Move a page.
PostPosted: Tue Nov 11, 2008 11:00 am 
Offline

Joined: Tue Nov 11, 2008 10:58 am
Posts: 4
Hi,

Is there a way to move a page that has been read from another pdf, by x number of points/mm's. what i need is to be able to shift the whole image by a certain amount. It doesn't matter that part of the page is lost as it goes over the edge.

Any help would be great. thanks


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Nov 11, 2008 11:29 am 
Offline

Joined: Tue Nov 11, 2008 10:58 am
Posts: 4
i'm currently using the following but it has not effect..

Code:
//Open input document
                PdfDocument InputPDFDoc = PdfReader.Open(file, PdfDocumentOpenMode.Import);

                //iterate through pages
                int count = InputPDFDoc.PageCount;
                for (int i = 0; i < count; i++)
                {
                    //Get page from input
                    PdfPage CurrentPage = new PdfPage();
                    CurrentPage = InputPDFDoc.Pages[i];
                   
                    //...and add it to the output
                    OutputPDFDoc.AddPage(CurrentPage);

                    XGraphics gfx = XGraphics.FromPdfPage(OutputPDFDoc.Pages[OutputPDFDoc.Pages.Count -1]);
                    gfx.Transform.TranslateAppend(100, 0);
                }


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Nov 11, 2008 12:30 pm 
Offline
PDFsharp Guru
User avatar

Joined: Mon Oct 16, 2006 8:16 am
Posts: 3097
Location: Cologne, Germany
Hi!

You can load a page from a PDF file and draw it as an XImage onto a new page.
The TwoPagesOnOne sample should contain all the function calls you need.

Transformation may be more efficient, but that's not my area of expertise.

_________________
Regards
Thomas Hoevel
PDFsharp Team


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Thu Nov 13, 2008 10:51 am 
Offline

Joined: Tue Nov 11, 2008 10:58 am
Posts: 4
Hmm.. still can't figure this out. could someone show me how to us the translate/transform methods?

thanks


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 75 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group