RosettaCodeData/Task/Munching-squares/Perl/munching-squares.pl
2015-02-20 09:02:09 -05:00

12 lines
275 B
Perl

use GD;
my $img = new GD::Image(256, 256, 1);
for my $y(0..255) {
for my $x(0..255) {
my $color = $img->colorAllocate( abs(255 - $x - $y), (255-$x) ^ $y , $x ^ (255-$y));
$img->setPixel($x, $y, $color);
}
}
print $img->png