Hi this might seem like a weird question. Anyway, I'm generating some PDF file on the fly using PHP and some third party code I found. My problem is I need to insert line breaks in some part of the text that will be inserted in the PDF file. Something like:
$pdf->InsertText('Line one\n\nLine two');
So it prints
Line one
Line two
I know \n doesn't work on PDF, but do you guys know any character or something that represents a line break on these files?
Thank you.