imagepsfreefont
imagepsfreefont
(PHP 4, PHP 5)
imagepsfreefont - 由PostScript Type 1字体使用的可用内存
警告
该功能在PHP 7.0.0中已被删除
。
描述
bool imagepsfreefont ( resource $font_index )
imagepsfreefont()
释放PostScript Type 1字体使用的内存。
参数
font_index
由imagepsloadfont()返回的字体资源。
返回值
返回TRUE
成功或失败时返回FALSE
。
例子
Example #1 imagepsfreefont() example
<?php
// Load a .pfb font file
$font = imagepsloadfont('./bchbi.pfb'
// Do any operations with the font here
// Free the font from memory
imagepsfreefont($font
?>
更新日志
版 | 描述 |
---|---|
7.0.0 | T1Lib支持已从PHP中删除,因此此功能已被删除。 |
注释
注意
:只有在使用--with-t1lib = DIR
编译PHP时才能使用此函数。