This commit is contained in:
2014-12-03 20:27:47 +01:00
commit 49a500fafb
19 changed files with 2638 additions and 0 deletions

14
standalone/image.php Executable file
View File

@@ -0,0 +1,14 @@
<?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);
?>