I'm trying to generate a PDF file containing labels which are 202mm wide by 50mm heigh. I have managed to do this and added the required text and a barcode but my problem is that the labels print out narrow edge first so the whole page need rotating 90 degrees.

I can do this in Adobe Reader with ease by simple right clicking on the page and selecting Rotate Clockwise (Shift+Ctrl++) but I really need to do it in the code.

Does anyone know how to do this with TCPDF? I have tried the Rotate function but can't seem to get it working. Any examples of code would be helpful.

link|improve this question

57% accept rate
1  
did you rotate the page on creation already? see tcpdf.org/examples/example_060.phps – konsolenfreddy Mar 30 '11 at 10:33
@James interesting question because recently I was thinking about automating my portfolio in PDF and adding a digital barcode on the bottom of each project page. searching for BARCODE and PDF I landed here. Is your problem fixed or not? – Sam Apr 16 '11 at 9:34
1  
@Sam in the end I had to use another program to rotate the page. The PDF generation and barcode rendering works fine though. With having no other alternative to use, I'd probably use TCPDF again. – James May 20 '11 at 7:21
@James "in the end I had to use another" ... I set a bounty for you hoping that more attention results to a solution. Also, I prefer "elegant solutions" over "compromis solutions" :) – Sam May 23 '11 at 11:11
@Sam ah. Cheers, I hadn't realised you had placed a bounty until I got completion notice this morning. – James May 27 '11 at 9:38
show 1 more comment
feedback

3 Answers

How about setting it to landscape when building the page?

TCPDF::__construct($orientation = 'L',
$   unit = 'mm',
$   format = 'A4',
$   unicode = true,
$   encoding = 'UTF-8',
$   diskcache = false)

$orientation (string) page orientation. Possible values are (case insensitive):

  • P or Portrait (default)
  • L or Landscape
  • '' (empty string) for automatic orientation

http://www.tcpdf.org/doc/classTCPDF.html#a5420ac8b0726a604260780d8f4185fc1

link|improve this answer
3  
I think you are right, but you should change the 'P' to 'L' – Nicola Peluchetti May 23 '11 at 21:49
whoops, thanks! – LawrenceGS May 26 '11 at 18:54
This was the firs thing that I tried but its not just the page I want to rotate. I want the text and page content to read from the bottom of the page to the top. – James May 27 '11 at 9:42
feedback

Rotate is odd. What the docs don't tell you is that you have to do a StartTransform first and then do a Rotate, then do a StopTransform afterwards. You can only do the StartTransform call after you have somehow set the X/Y position (so for example, I use SetXY to initially position the page, then you can call StartTransform). So try to do:

  $this->pdfinvoice->StartTransform();
  $this->pdfinvoice->Rotate(-90);

then add your content, then call

  $this->pdfinvoice->StopTransform();

when you're done. See how that works for you.

link|improve this answer
Using what you suggested was the closest I got to being able to rotate in TCPDF but I got all sorts of strange anomalies most likely from my complete lack of understand of how these functions work. – James May 27 '11 at 9:45
1  
My guess is that entire co-ordinate system moves: you'll need to adjust all your X/Y positions accordingly, and that will require some math to get right. Unfortunately there doesn't appear to be a magical rotate everything on this page while moving 0,0 to the top right position method of doing it. – Femi May 27 '11 at 13:07
$page_format= array(55,55,'Rotate'=>-90); $pdf->AddPage('P', $page_format, false, false); // Also possible and you can set $pdf->SetPageUnit("mm"); in case .. – YumYumYum Jul 20 '11 at 14:51
feedback

The simplest option is to set the page on Landscape mode 'L' if this is what you need. Otherwise, if you need a page in portrait mode but with rotated objects, then you can create an XObject template and put your content there, including graphical transformations. Check the default examples at http://www.tcpdf.org for graphical transformations and XObject templates.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.