<?php

$width  
8;
$height 8;


// $im = imagecreatetruecolor($width, $height); /* bitmap */
$im imagecreate($width$height);          /* palette */

$colors = array();
$colors []= imagecolorallocate($im25500); // red
$colors []= imagecolorallocate($im02550); // green
$colors []= imagecolorallocate($im00255); // blue
$colors []= imagecolorallocate($im255,255,0); // yellow

for ($y=$y $height $y++) {
    for (
$x=$x $width $x++) {
        
$i = ($x $y $width) % 4;
        
imagesetpixel($im$x$y$colors[$i]);
    }
}

header("Content-type: image/png");
imagepng($im);