PDF in Two Page Up

Hi

Is there anyway in aspose i can set my pdf page in "Two Page Up"? not "Two Page Left" or "Two Page Continues"

Hi Rosh,


Thanks for your interest in our products.

Can you please share some further details regarding your requirements i.e. Either you need to convert the PDF file to NUp document or you need to add some blank pages. Please share some information so we may reply accordingly.

hi,

please find the attachment, the property that i set in (which i rounded with red color). i want to do the same using aspose.pdf.kit tool

Hi Rosh,


I am afraid the requested feature is
currently not supported but for the sake of implementation, I have logged this
requirement in our issue tracking system under New Features list as PDFNEWNET-35091.
We will further investigate this requirement in details and will keep you
updated on the status of a correction. <o:p></o:p>

We apologize for your inconvenience.


PS, However as a workaround, you may also accomplish this requirement by setting Page Layout under Default Layout and Zoom section of Page Display option (Select Edit => Preferences => Page Display" menu.

The issues you have found earlier (filed as PDFNEWNET-35091) have been fixed in Aspose.Pdf for .NET 8.9.0.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.

Hi Rosh,


Thanks for your patience. We have further investigated the requirements and found that “Two Page Up” page layout is not supported by Adobe. So we can not support the feature, as we try to mimic Aspose.Pdf as closest as possible to Adobe.

Standard Page Layout values in PDF specificaion are:

(Table 28 – Entries in the catalog dictionary)
SinglePageDisplay one page at a time
OneColumnDisplay the pages in one column
TwoColumnLeftDisplay the pages in two columns, with odd-numbered pages on the left
TwoColumnRightDisplay the pages in two columns, with odd-numbered pages on the right
TwoPageLeft(PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left
TwoPageRight(PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right


However, as a workaround the following code snippet may be used to set up page layout “Two-Up (Facing)”. Hopefully it will help you to accomplish the requirements.


Document doc = new Document(“input.pdf”);
doc.PageLayout = PageLayout.TwoPageRight;
doc.Save(“TwoPageRight_output.pdf”);

We are sorry for the inconvenience caused.


Best Regards,