Basically I need to create a part of the text of a multicell in bold
I need:
$pdf->MultiCell(0,3,utf8_decode("**Date:** $hoy
**Time:** $time
**Product:** $producto"));
But I do not know how I can achieve it
Basically I need to create a part of the text of a multicell in bold
I need:
$pdf->MultiCell(0,3,utf8_decode("**Date:** $hoy
**Time:** $time
**Product:** $producto"));
But I do not know how I can achieve it
You must assign the font format before, for example:
$pdf->SetFont('Arial','B',16);
The first parameter is the font name.
The second parameter 'B' is for the font to be bold.
On the line following the Multicell you use the same sentence to go back to the source you want to use in the rest of the document. I hope it helps you. Greetings.