I have created a custom header for my PDF in TCPDF and I would like to add a blue line about 2px width that goes across the page at the bottom of the header but cant figure out how?

Please could someone give some help?

Thanks

link|improve this question
feedback

1 Answer

I believe you do it like this:

$style = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0));

$pdf->Line(5, 10, 80, 30, $style);

Here is the full example

http://www.tcpdf.org/examples/example_012.phps

link|improve this answer
@PabliSerbo - Thanks for the examples I get it now. But how would you get the width of header to set the line width? – Billy May 1 '11 at 6:57
feedback

Your Answer

 
or
required, but never shown

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