In FPDF I have a cell with a width of 176mm where I need to put a client name. The problem is that the client name doesn always adjust to that fixed width. Is there a way to make the font size of the cell autoadjust to the cell width in case it is too long?
This is the code that I have right now:
$pdf->Cell( 116, 7, utf8_decode( $row_or[ 'client_name' ] ), 0, 0, 'L' );
I know that TCPDF has a way to set the auto-stretch but i have not found any for FPDF. Do I have to do it with code?