imagepsslantfont

(PHP 4, PHP 5)

imagepsslantfontSlant a font

警告

この機能は PHP 7.0.0 で 削除 されました。

説明

imagepsslantfont ( resource $font_index , float $slant ) : bool

Slant a given font.

パラメータ

font_index

imagepsloadfont() により返されるフォントリソース

slant

Slant level.

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

変更履歴

バージョン 説明
7.0.0PHP から T1Lib サポートが削除されたため、この関数は削除されました。

例1 imagepsslantfont() example

<?php
// Load a .pfb font file
$font imagepsloadfont('./px3l.pfb');

// Slant the font by 22.5
imagepsslantfont($font22.5);

// Do any operations with the font here

// Free the font from memory
imagepsfreefont($font);
?>

注意

注意: この関数は、PHP が --with-t1lib を指定してコンパイルされている場合のみ使用可能です。