Forum und email

imagestring

(PHP 4, PHP 5)

imagestring — Draw a string horizontally

설명

bool imagestring ( resource $image , int $font , int $x , int $y , string $string , int $color )

Draws a string at the given coordinates.

매개변수

font

내장 글꼴 1, 2, 3, 4, 5(큰 숫자가 큰 글꼴)나 imageloadfont()로 등록한 글꼴 식별자를 사용할 수 있습니다.

font

Can be 1, 2, 3, 4, 5 for built-in fonts in latin2 encoding (where higher numbers corresponding to larger fonts) or any of your own font identifiers registered with imageloadfont().

x

x-coordinate of the upper left corner

y

y-coordinate of the upper left corner

string

The string to be written

color

A color identifier created with imagecolorallocate()

반환값

성공할 경우 TRUE를, 실패할 경우 FALSE를 반환합니다.

예제

Example#1 imagestring() example

<?php
// create a 100*30 image
$im imagecreate(10030);

// white background and blue text
$bg imagecolorallocate($im255255255);
$textcolor imagecolorallocate($im00255);

// write the string at the top left
imagestring($im500"Hello world!"$textcolor);

// output the image
header("Content-type: image/png");
imagepng($im);
?>

위 예제의 출력 예: