imagecreatetruecolor() returns an image identifier representing a black image of size x_size by y_size.
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor (50, 100)
or die ("Cannot Initialize new GD image stream");
$text_color = imagecolorallocate ($im, 233, 14, 91);
imagestring ($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng ($im);
imagedestroy ($im);
?>This function was added in PHP 4.0.6 and requires GD 2.0.1 or later.
This function will not work with GIF file formats.
See also imagedestroy() and imagecreate().
| This HTML Help has been published using the chm2web software. |