summaryrefslogtreecommitdiff
path: root/api/test1.php
blob: 6d25f85b86e241ee94512732400ba0db75b2547d (plain)
1
2
3
4
5
6
7
8
<?php

$img = imagecreate(2048, 1024);
$color = imagecolorallocate($img, 255, 0, 0);

header("Content-type: image/jpeg");
imagejpeg($img);
imagedestroy($img);