Menu

Image in headers and footers

PhpRtf
2010-05-15
2013-04-30
  • Renato Lopes

    Renato Lopes - 2010-05-15

    How I can do a image (jpg) in header and another image in footer?

     
  • Serge LAOT

    Serge LAOT - 2010-05-16

    Modify samples/images.php as is :

    line 21 : Remove 'first', so the same header is displayed on every pages

    $header = $rtf->addHeader();
    

    line 25 : Insert the following lines.
    // footer
    $footer = $rtf->addFooter();
    $footer->addImage('sources/cats.jpg', $parFormat);
    $footer->writeText('Another image in footer.', new PHPRtfLite_Font(), new PHPRtfLite_ParFormat());

    Then run the example.

     

Log in to post a comment.