Hi
Do you mean you have a PDF file, you want to open it, rotate all pages and then save it again to file?
You can use:
// Rotate the entire document
ImageEnView1.LockUpdate();
ImageEnView1.IO.LoadFromFile( 'D:\in.pdf' );
for i := 0 to ImageEnView1.PdfViewer.PageCount -1 do
ImageEnView1.PdfViewer.PageRotation[ i ] := iepr90Clockwise;
ImageEnView1.IO.SaveToFile( 'D:\out.pdf' );
ImageEnView1.UnlockUpdate();
Nigel
Xequte Software
www.imageen.com