Para quem usa a biblioteca TCPDF que já vem com Scriptcase,segue um código que exibe todas as fontes de texto instaladas.
$this->Pdf->SetXY(5,5);
$path = '../../../..'.$this->Ini->path_prod.'/third/tcpdf/fonts';
$diretorio = scandir($path);
$noFonts=['uni2cid_ag15','uni2cid_ac15','uni2cid_ak12','uni2cid_aj16'];
foreach($diretorio as $arquivo) {
$font=str_replace('.php','',$arquivo);
if (strpos($arquivo,'.php') AND !in_array($font,$noFonts)) {
$this->Pdf->SetFont('cid0ct', '', 9);
$this->Pdf->Cell(40,0,$font.'->',0,0);
$this->Pdf->SetFont($font, '', 9);
$this->Pdf->Cell(70,0,$font,0,0);
$this->Pdf->SetFont($font, '', 12);
$this->Pdf->Cell(70,0,$font,0,0);
$this->Pdf->SetFont($font, '', 18);
$this->Pdf->Cell(70,0,$font,0,1);
$this->Pdf->Ln();
}
}
TAGS: DICAS, HAROLDO , TCPDF, FONTES, REPORT,_PDF