(PHP 4, PHP 5)
imagepsslantfont — フォントを斜めにする
この機能は PHP 7.0.0 で 削除 されました。
$font_index
, float $slant
) : bool指定されたフォントを斜めにします。
成功した場合に TRUE
を、失敗した場合に FALSE
を返します。
バージョン | 説明 |
---|---|
7.0.0 | PHP から T1Lib サポートが削除されたため、この関数は削除されました。 |
例1 imagepsslantfont() の例
<?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);
?>
注意: この関数は、PHP が --with-t1lib を指定してコンパイルされている場合のみ使用可能です。