RosettaCodeData/Task/Bitmap-Read-a-PPM-file/Oz/bitmap-read-a-ppm-file-2.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
209 B
Text

declare
[BitmapIO Grayscale] = {Module.link ['BitmapIO.ozf' 'Grayscale.ozf']}
B = {BitmapIO.read "image.ppm"}
G = {Grayscale.toGraymap B}
in
{BitmapIO.write {Grayscale.fromGraymap G} "greyimage.ppm"}