GD and Image 函数
在线手册:中文 英文
PHP手册

imagepsextendfont

(PHP 4, PHP 5)

imagepsextendfont扩充或精简字体

说明

bool imagepsextendfont ( int $font_index , float $extend )

扩充或精简某字体(font_index)。如果 extend 参数的值小于一则是精简该字体。

Note: 此函数仅在 PHP 编译时指定了 --with-t1lib[=DIR] 时可用。

参数

font_index

A font resource, returned by imagepsloadfont().

extend

Extension value, must be greater than 0.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE.

范例

Example #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);
?>

注释

Note: 此函数仅在 PHP 编译时指定了 --with-t1lib[=DIR] 时可用。


GD and Image 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 扩充或精简字体

用户评论:

admin at studio-gepard dot pl (03-Dec-2009 10:17)

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)

Pascal@TeamX (21-May-2003 11:28)

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);