RosettaCodeData/Task/Bitmap-Read-an-image-through-a-pipe/Zkl/bitmap-read-an-image-through-a-pipe.zkl
2017-09-25 22:28:19 +02:00

2 lines
90 B
Text

p:=System.popen(0'|convert "fractalTree.jpg" ppm:-|,"r");
img:=PPM.readPPM(p); p.close();