imagestringup
PHP function
Edit on GitHub ✎
(PHP 4, PHP 5, PHP 7, PHP 8)
Draw a string vertically
Description
imagestringup(GdImage $image, GdFont|int $font, int $x, int $y, string $string, int $color): true
Draws a string vertically at the given coordinates.
Parameters
xx-coordinate of the bottom left corner.
yy-coordinate of the bottom left corner.
stringThe string to be written.
colorColor
Return Values
Always
Changelog
| Version | Description |
|---|
Examples
imagestringup() example
php
<?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');
?>The above example will output something similar to: Output of example : imagestringup()