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