How rotate a pdf document using php? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:11:30Z http://stackoverflow.com/feeds/question/403372 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php 2 How rotate a pdf document using php? hmoya 2008-12-31T16:25:56Z 2009-11-12T06:50:29Z <p>How can I rotate a pdf document using php and linux?</p> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/403384#403384 0 Answer by DFectuoso for How rotate a pdf document using php? DFectuoso 2008-12-31T16:31:37Z 2008-12-31T16:31:37Z <p>You would have to use a external library like <a href="http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf" rel="nofollow">this</a> to extract the info a generate an image, then put it back to the pdf(or a new one)</p> <p>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?</p> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/404011#404011 0 Answer by Sparr for How rotate a pdf document using php? Sparr 2008-12-31T20:51:55Z 2008-12-31T20:51:55Z <p>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).</p> <p><a href="http://www.perlmonks.org/?node_id=485615" rel="nofollow">This snippet of perl</a> should help illustrate what parts of the file you are looking for.</p> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/475863#475863 1 Answer by Tom for How rotate a pdf document using php? Tom 2009-01-24T11:06:04Z 2009-01-24T11:06:04Z <p>You could use pdf90 from <a href="http://go.warwick.ac.uk/pdfjam" rel="nofollow">PDFjam</a>.</p> <p>To address some of the other suggestions:</p> <ul> <li><p>I would be wary of adjusting the Rotate attribute directly, as this attribute is stored as text, and '90' or '270' obviously uses a different number of bytes to '0'. I believe inserting the required bytes can make a mess of the index tables that appear at the end of a PDF file. After that, you're reliant on a viewer being able to interpret the damaged file.</p></li> <li><p>Rendering the PDF to an image and rotating that is going to rasterize any text or vector graphics, leading to either a much larger file size, or much lower quality.</p></li> </ul> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/475872#475872 0 Answer by Nolte Burke for How rotate a pdf document using php? Nolte Burke 2009-01-24T11:13:46Z 2009-01-24T11:13:46Z <p>There are a few libraries for handling PDFs with PHP.</p> <p>Here's a good code example using such a library. I found it, just by Googling "PHP PDF":</p> <p><a href="http://www.fpdf.org/en/script/script2.php" rel="nofollow">http://www.fpdf.org/en/script/script2.php</a></p> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/572281#572281 1 Answer by unknown (google) for How rotate a pdf document using php? unknown (google) 2009-02-21T04:36:15Z 2009-02-21T04:36:15Z <p>Rotate an Entire PDF Document's Pages to 180 Degrees</p> <p>$command = "pdftk in.pdf cat 1-endS output out.pdf"; system($command);</p> <p>hmoya</p> http://stackoverflow.com/questions/403372/how-rotate-a-pdf-document-using-php/1720366#1720366 0 Answer by Jabbar for How rotate a pdf document using php? Jabbar 2009-11-12T06:50:29Z 2009-11-12T06:50:29Z <p>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 </p>