diff options
Diffstat (limited to 'api/test1.php')
-rw-r--r-- | api/test1.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/api/test1.php b/api/test1.php new file mode 100644 index 0000000..6d25f85 --- /dev/null +++ b/api/test1.php @@ -0,0 +1,8 @@ +<?php + +$img = imagecreate(2048, 1024); +$color = imagecolorallocate($img, 255, 0, 0); + +header("Content-type: image/jpeg"); +imagejpeg($img); +imagedestroy($img);
\ No newline at end of file |