imagepsextendfont

(PHP 4, PHP 5)

imagepsextendfontExtend or condense a font

Warning

This function was REMOVED in PHP 7.0.0.

설명

bool imagepsextendfont ( resource $font_index , float $extend )

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

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

변경점

버전 설명
7.0.0 T1Lib support was removed from PHP, thrus removing this function.

주의

Note: 이 함수는 --enable-t1lib 를 사용하여 PHP를 컴파일 했을 경우에만 사용할 수 있습니다.

add a note add a note

User Contributed Notes 2 notes

up
4
admin at studio-gepard dot pl
14 years ago
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)
up
0
Pascal@TeamX
20 years ago
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);
To Top