(PHP 4, PHP 5)
imagepsloadfont — Carrega uma fonte PostScript Type 1 a partir de um arquivo
$filename
) : resource
Carrega uma fonte PostScript Type 1 do dado
filename
.
filename
Se tudo for feito corretamente, um índice de fonte válida será retornado e
poderá ser usado para vários propósitos. Caso contrário a função retorna FALSE
.
Exemplo #1 Exemplo da imagepsloadfont()
<?php
header("Content-type: image/png");
$im = imagecreatetruecolor(350, 45);
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 349, 44, $white);
$font = imagepsloadfont("bchbi.pfb"); // or locate your .pfb files on your machine
imagepstext($im, "Testing... It worked!", $font, 32, $white, $black, 32, 32);
imagepsfreefont($font);
imagepng($im);
imagedestroy($im);
?>
Nota: Esta função somente está disponível se o PHP estiver compilado com --with-t1lib[=DIR].