I know that TCPDF supports special characters and several languages. I tried all the fonts provided. I want to generate PDF in UTF-8. I know that the included freeserif font probably includes the character in question. "•"
Here is my current constructor call:
$pdf=new MYPDF('P', 'mm', 'Letter', true, 'UTF-8', false);
Here is an example of a generated character:
$this->Cell(80,6.35,"• $POST[reportTitle]",0,0,'L',true);
I also tried replacing the character with its html code:
•
source
share