Приглашаем посетить
Куприн (kuprin-lit.ru)

imagepsloadfont


imagepsloadfont

(PHP 3 >= 3.0.9, PHP 4, PHP 5)

imagepsloadfont -- Load a PostScript Type 1 font from file

Description

resource imagepsloadfont ( string filename )

In the case everything went right, a valid font index will be returned and can be used for further purposes. Otherwise the function returns FALSE and prints a message describing what went wrong, which you cannot read directly, while the output type is image.

Пример 1. imagepsloadfont() example

<?php
header
("Content-type: image/jpeg");
$im imagecreatetruecolor(35045);
$black imagecolorallocate($im000);
$white imagecolorallocate($im255255255);
$font imagepsloadfont("bchbi.pfb"); // or locate your .pfb files on your machine
imagepstext($im"Testing... It worked!"$font32$white$black3232);
imagepsfreefont($font);
imagejpeg($im""100); //for best quality...your mileage may vary
imagedestroy($im);
?>

Замечание: Эта функция доступна только в том случае, если PHP был скомпилирован с опцией --enable-t1lib.

See also imagepsfreefont().