Egyszerű mint az egyszeregy!
<?php
$x = 255;$y = 255;$image = imagecreatetruecolor($x, $y);
for ($i = 0; $i < $x; $i++) {for ($j = 0; $j < $y; $j++) { $color = imagecolorallocate($image, $i, $i, $i); imagesetpixel($image,$i,$j,$color);}}
header('Content-Type:…