imagepsextendfont

(PHP 4, PHP 5)

imagepsextendfontExtend or condense a font

警告

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

説明

imagepsextendfont ( resource $font_index , float $extend ) : bool

Extend or condense a font (font_index), if the value of the extend parameter is less than one you will be condensing the font.

パラメータ

font_index

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

extend

Extension value, must be greater than 0.

返り値

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

変更履歴

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

例1 imagepsextendfont() example

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

// Extend the font by 2.5
imagepsextendfont($font2.5);

// Do any operations with the font here

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

注意

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