14 lines
378 B
PHP
Executable File
14 lines
378 B
PHP
Executable File
<?php
|
|
|
|
header("Content-type: image/png");
|
|
|
|
$iHeight = 150;
|
|
$iWidth = 200;
|
|
|
|
$im = @imagecreate($iWidth, $iHeight) or die("Cannot Initialize new GD image stream");
|
|
$background_color = imagecolorallocate($im, 145, 145, 145);
|
|
$text_color = imagecolorallocate($im, 255, 255, 255);
|
|
imagestring($im, 4, 5, $iHeight-20, "Picture 12", $text_color);
|
|
imagepng($im);
|
|
imagedestroy($im);
|
|
?>
|