Skip to content

Instantly share code, notes, and snippets.

@eurica
Created November 9, 2010 03:32
Show Gist options
  • Save eurica/668653 to your computer and use it in GitHub Desktop.
Save eurica/668653 to your computer and use it in GitHub Desktop.
random image
$img = imageCreateTrueColor(512, 512);
for ($i=0; $i < 512; $i++) {
for ($j=0; $j < 512; $j++) {
$c=mt_rand(0,255);
$col = imageColorAllocate($img, $c, $c, $c);
imagesetpixel($img, $i, $j, $col);
}
}
header("Content-Type: image/png");
imagepng($img);
imagedestroy($img);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment