在线文档教程
PHP
图像 | Image

imagepsloadfont

imagepsloadfont

(PHP 4, PHP 5)

imagepsloadfont - 从文件加载PostScript Type 1字体

警告

该功能在PHP 7.0.0中已被删除

描述

resource imagepsloadfont ( string $filename )

从给定的文件中加载PostScript Type 1字体filename

参数

filename

Postscript字体文件的路径。

返回值

在一切正常的情况下,将返回一个有效的字体索引,并可用于进一步的目的。否则函数返回FALSE

例子

Example #1 imagepsloadfont() example

<?php // Create a new image instance $im = imagecreatetruecolor(350, 45 // Allocate colors and fill the background $black = imagecolorallocate($im, 0, 0, 0 $white = imagecolorallocate($im, 255, 255, 255 imagefilledrectangle($im, 0, 0, 349, 44, $white // Load a font, write to the image and free the font from memory $font = imagepsloadfont("bchbi.pfb" imagepstext($im, "Testing... It worked!", $font, 32, $white, $black, 32, 32 imagepsfreefont($font // Output the image header('Content-type: image/png' imagepng($im imagedestroy($im ?>

更新日志

描述
7.0.0T1Lib支持已从PHP中删除,因此此功能已被删除。

注释

注意:只有在使用--with-t1lib = DIR编译PHP时才能使用此函数。

← imagepsfreefont

imagepsslantfont →