How can I rotate a pdf document using php and linux?
|
|
It is very simple to rotate a PDF file . Just need to rotate the monitor and you will see the PDF rotated .. What an Idea Sir Jeeee |
||
|
|
|
|
Rotate an Entire PDF Document's Pages to 180 Degrees $command = "pdftk in.pdf cat 1-endS output out.pdf"; system($command); hmoya |
||
|
|
|
|
There are a few libraries for handling PDFs with PHP. Here's a good code example using such a library. I found it, just by Googling "PHP PDF": |
||
|
|
|
|
You could use pdf90 from PDFjam. To address some of the other suggestions:
|
||
|
|
|
|
You will have to access the PDF as a binary file then find and adjust the "Rotate" attribute for each page (and possibly the "MediaBox" attribute). I am not aware of any PDF libraries for PHP that allow for this sort of direct manipulation of existing files. This method will not require changing anything about the content of the pages, it just changes the orientation the pages are displayed in by viewers (similar to the EXIF Orientation information in JPEG images). This snippet of perl should help illustrate what parts of the file you are looking for. |
||
|
|
|
|
You would have to use a external library like this to extract the info a generate an image, then put it back to the pdf(or a new one) EDIT: If your going to get a Logo or a diagram this is a good choice, if its a big document with text and lots of images... its going to be pretty hard, could you edit the OP with more info on what you need? |
||
|
|
