for i in akiyo???
do echo $i pnmtopng $i > $i.png done |
para comprimir las imágenes, donde cada imagen akiyo??? es una imagen PPM (Portable Pixel Map), con la estructura:
rgb = unsigned char[3];
image = rgb[352][288]; PPM_image = { P6 /* Magic number */ 352 288 /* Columns and rows of the image */ 255 /* Maximun level for the RGB components */ image /* The image data */ } |