mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 06:44:07 +00:00
13 lines
290 B
PHP
13 lines
290 B
PHP
![]() |
<?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);
|
||
|
?>
|