I'd like to print some text in a MultiCell, where all lines but the first one would be indented.
I want to achieve something like this:
This is what I have so far: $this->tcpdf->MultiCell(WIDTH, 0, $myText, "", "L");
Thanks for your suggestions!
There is no inbuilt method to do that, TCPDF offers the usual methods of justifying text which are left, right,center, justify, and default and other methods for vertical alignment.
Take a look at Multicell TCPDF
You can try writing a custom extention for your needs.