Is it possible to re-arrange the PDF document pages?
Yes, it is possible to rearrange the pages by using the ReArrange method of PdfLoadedPageCollection object. By passing the page order in array will reorder the pages.
[C#]
//Load the existing document
PdfLoadedDocument doc = new PdfLoadedDocument(@"..\..\document.pdf");
//Get the pages in the document
PdfLoadedPageCollection coll = doc.Pages;
//Reorder the pages
int[] array ={ 3,1,2,0};
coll.ReArrange(array );
doc.Save("Rearrang.pdf");
doc.Close(True) ;
["VB"]
'Load the existing document
Dim doc As PdfLoadedDocument = New PdfLoadedDocument("..\..\document.pdf")
'Get the pages in the document
Dim coll As PdfLoadedPageCollection = doc.Pages
'Reorder pages
Dim array() As Integer ={ 3,1,2,0}
coll.ReArrange(array)
doc.Save("Rearrang.pdf")
doc.Close(True)
Sample reference:
https://files.syncfusion.com/support/pdf.Windows/PDF-Page-Re-arrange.zip
I hope you enjoyed learning about whether it is possible to re-arrange the PDF document pages.
You can refer to our Flutter PDF feature tour page to learn about its other groundbreaking features and documentation, and how to quickly get started with configuration specifications. You can also explore our Flutter PDF Flutter PDF examples to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to explore our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums or feedback portal. We are always happy to assist you!