Menu

Page Size

PhpRtf
Anonymous
2012-01-04
2013-04-30
  • Anonymous

    Anonymous - 2012-01-04

    I can't set page size A4. Only 'other size' is available by default. I tried to set it obviously in the code, but unsuccessfully. Can you make ready versions of page size?

     $rtf->setPageWidth(21); // in cm
     $rtf->setPageHeight(29.7); // in cm
    
     
  • Steffen Zeidler

    Steffen Zeidler - 2012-01-04

    There is now setPageWidth() and setPageHeight() methods, you need to use the following code:

    $rtf->setPaperWidth(21);
    $rtf->setPaperHeight(29.7);

    I hope this was of help.
    Best regards

     
  • Anonymous

    Anonymous - 2012-01-05

    thanks a lot :) 

     

Log in to post a comment.