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