I am not a programmer and most PDF users need this function. I think
it should really be a menu item, or the rotate page icon should refer
to all pages, not just the current page.  Adobe Reader works this way.

Malcolm

On Tue, May 11, 2010 at 03:07:05PM -0700, Malcolm Dean wrote:
> Is it possible to rotate the entire PDF -- all its pages -- and save the new
> page orientation?

Sure, you have 2 possibilities for doing that:
1) use GUI and scrpting:
   The something like the following should do the trick (not tested):
        for (i=0, PageSpace.firstPage(); i < document.getPageCount(); i++,
PageSpace.nextPage()) {
                rotatePage(ROTATION_ANGLE)
        }
   You should just type this into the command-line in GUI.

2) write a simple c++ application for that and link it to the
pdfedit-core-dev library which is a part of the pdfedit source tarball.
This will work slightly more optimal and can be used for batch work more
easily. Let me know if you are interested in this.

>
> Thank you,
> Malcolm
-- 
Michal Hocko


Malcolm Dean
Research Affiliate, Human Complex Systems, UCLA
http://intersci.ss.uci.edu/wiki/index.php/Malcolm_Dean
Member, Higher Cognitive Affinity Group, BRI
http://www.bri.ucla.edu/bri_research/Higher_cog.asp


---------- Forwarded message ----------
From: Malcolm Dean <malcolmd...@gmail.com>
Date: Tue, May 11, 2010 at 15:07
Subject: Rotate all pages?
To: pdfedit-support@lists.sourceforge.net


Is it possible to rotate the entire PDF -- all its pages -- and save the new
page orientation?

Thank you,
Malcolm
------------------------------------------------------------------------------

_______________________________________________
Pdfedit-support mailing list
Pdfedit-support@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdfedit-support

Reply via email to