PHP.nl

imagestringup

imagestringup

Draw a string vertically

true **imagestringup** GdImage $image  $font int $x int $y string $string int $color

Draws a vertically at the given coordinates. string

xx-coordinate of the bottom left corner.

yy-coordinate of the bottom left corner.

stringThe string to be written.

colorgd.identifier.color

return.true.always

Voorbeeld: example

<?php
// create a 100*100 image
$im = imagecreatetruecolor(100, 100);

// Write the text
$textcolor = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
imagestringup($im, 3, 40, 80, 'gd library', $textcolor);

// Save the image
imagepng($im, './stringup.png');
?>

imagestring``imageloadfont