Files
hexound.ru/new/gd.php

13 lines
290 B
PHP
Raw Permalink Normal View History

2018-03-26 15:25:02 +02:00
<?php
//phpinfo();
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
// Output the image
imagegd($im);
// Free up memory
imagedestroy($im);
?>