RosettaCodeData/Task/Bitmap/Octave/bitmap-3.octave
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

8 lines
212 B
Text

%example
im = create_rgb_image(200,200);
for x = 1:128
im = set_pixel(im, [x, x], [200, 50, 220]);
endfor
% it seems like saveimage wants double class on [0,1]
saveimage("image.ppm", double(im)./256, "ppm");