Hi,

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

------------------------------------------------------------------------------

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

Reply via email to