Bitmap: Difference between revisions

No edit summary
Line 2,063:
 
=={{header|LiveCode}}==
LiveCode has built in support for importing and exporting PBM, JPEG, GIF, BMP or PNG graphics formats
 
<lang LiveCode>
-- create an image container box at the center of the current stack window with default properties
Line 2,082 ⟶ 2,084:
wait 2 seconds
set the filename of image "test" to "http://rosettacode.org/mw/title.png"
-- the next line is copy of the Write a PPM task:
export image "test" to file "~/Test.PPM" as paint -- paint format is one of PBM, PGM, or PPM
</lang>