mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 06:44:07 +00:00
Initial
This commit is contained in:
13
new/gd.php
Executable file
13
new/gd.php
Executable file
@ -0,0 +1,13 @@
|
||||
<?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);
|
||||
?>
|
Reference in New Issue
Block a user