php8.5
Home/ Manual/ image / functions/ imagestringup

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

x

x-coordinate of the bottom left corner.

y

y-coordinate of the bottom left corner.

string

The string to be written.

color

Color

Return Values

Always

Changelog

VersionDescription

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

See Also

Source: reference/image/functions/imagestringup.xml · from the official PHP manual (php/doc-en)