imagepsextendfont
imagepsextendfont
(PHP 4, PHP 5)
imagepsextendfont - 扩展或压缩字体
警告
该功能在PHP 7.0.0中已被删除
。
描述
bool imagepsextendfont ( resource $font_index , float $extend )
扩展或压缩字体(font_index
),如果extend
参数的值小于1,则会压缩字体。
参数
font_index
由imagepsloadfont()返回的字体资源。
extend
扩展值,必须大于0。
返回值
返回TRUE
成功或失败时返回FALSE
。
例子
Example #1 imagepsextendfont() example
<?php
// Load a .pfb font file
$font = imagepsloadfont('./px3l.pfb'
// Extend the font by 2.5
imagepsextendfont($font, 2.5
// Do any operations with the font here
// Free the font from memory
imagepsfreefont($font
?>
更新日志
版 | 描述 |
---|---|
7.0.0 | T1Lib支持已从PHP中删除,因此此功能已被删除。 |
注释
注意
:只有在使用--with-t1lib = DIR
编译PHP时才能使用此函数。
← imagepsencodefont
imagepsfreefont →