It is impossible to use this function with a TrueType (.ttf) fonts.You need to convert font to PostScript Type1 (.pfb) on your own (google - there are free converters too)
(PHP 4, PHP 5)
imagepsextendfont — フォントの幅を広げたり縮めたりする
この機能は PHP 7.0.0 で 削除 されました。
$font_index
, float $extend
) : bool
フォント(font_index
)の幅を広げたり縮めたりします。
extend
パラメータの値が1より小さい場合、フォントの幅は縮小されます。
成功した場合に TRUE
を、失敗した場合に FALSE
を返します。
バージョン | 説明 |
---|---|
7.0.0 | PHP から T1Lib サポートが削除されたため、この関数は削除されました。 |
例1 imagepsextendfont() の例
<?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 を指定してコンパイルされている場合のみ使用可能です。
It is impossible to use this function with a TrueType (.ttf) fonts.You need to convert font to PostScript Type1 (.pfb) on your own (google - there are free converters too)
Just for the less experienced PHP-Hackers, like me ;-)
header("Content-type: image/png");
$text = "hello world";
$val = 1.2;
$font = imagepsloadfont(" path to font ");
$im = imagecreate(200, 200);
$color_bg = imagecolorallocate($im, 255, 255, 255);
$color_font = imagecolorallocate($im, 0, 0, 0);
imagefill($im, 0, 0, $color_font);
imagepsextendfont($font, $val);
$bound = imagepstext($im, $text, $font, 25, $color_bg, $color_font, 10, 100, 0, 0, 0, 4);
imagepng($im);
imagedestroy($im);