RosettaCodeData/Task/Colour-bars-Display/Perl-6/colour-bars-display.pl6

29 lines
499 B
Raku
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
my ($x,$y) = 1280, 720;
2013-06-05 21:47:54 +00:00
2019-09-12 10:33:56 -07:00
my @colors = map -> $r, $g, $b { Buf.new: |(($r, $g, $b) xx $x div 8) },
0, 0, 0,
255, 0, 0,
0, 255, 0,
0, 0, 255,
255, 0, 255,
0, 255, 255,
255, 255, 0,
255, 255, 255;
2013-06-05 21:47:54 +00:00
2019-09-12 10:33:56 -07:00
my $img = open "colorbars.ppm", :w orelse die "Can't create colorbars.ppm: $_";
2013-06-05 21:47:54 +00:00
2019-09-12 10:33:56 -07:00
$img.print: qq:to/EOH/;
2013-06-05 21:47:54 +00:00
P6
# colorbars.ppm
2019-09-12 10:33:56 -07:00
$x $y
2013-06-05 21:47:54 +00:00
255
EOH
2019-09-12 10:33:56 -07:00
for ^$y {
2013-06-05 21:47:54 +00:00
for ^@colors -> $h {
2019-09-12 10:33:56 -07:00
$img.write: @colors[$h];
2013-06-05 21:47:54 +00:00
}
}
2019-09-12 10:33:56 -07:00
$img.close;