• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Reply to: PDF page rotation

Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "PDF page rotation"

Collapse

  • yorkshireman
    replied
    Originally posted by Ignis Fatuus View Post
    Someone has copied a 110-page document to PDF for me to read, but every second page is upside down. Now, I can get through it (PageDown then Ctrl-Shift-0 twice), but I wondered if there was any way.... nah, I suppose not.
    You maybe could use a variation on this pdfedit script (but increment i by 2 instead of 1)

    Code:
            for (i=0, PageSpace.firstPage(); i < document.getPageCount(); i=i+2, 
    PageSpace.nextPage()) {
                    rotatePage(180)
            }


    Note: I haven't tested this

    Leave a comment:


  • Ignis Fatuus
    started a topic PDF page rotation

    PDF page rotation

    Someone has copied a 110-page document to PDF for me to read, but every second page is upside down. Now, I can get through it (PageDown then Ctrl-Shift-0 twice), but I wondered if there was any way.... nah, I suppose not.

Working...
X