I have a MultiCell field that has an indeterminate height (the text comes from bd):
$pdf->MultiCell(100,5,'...',1,1);
I need to align an image, always next to the beginning of the text field.
$pdf->Image('...',115,30,80,0,'PNG');
How do images need to be set to x, y, how can I deal? Considering that the number of lines and pages is dynamic?