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
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,
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.
Hi Rosh,
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,