


Format:
saveimage "filename" {format JPEG,TIFF,PCX,BMP,GIF} {bits 4,8,16,24,32} {quality 0-1000};
The saveimage command saves the image/photo appearing on the Terminal window to a file named "filename". The optional parameters allow you to choose:
· Type of image file. You may specify any one of the image types available on the Save Photo window. The default type is JPEG.
· Number of bits per pixel to store in the file. The default is 24 (true color format).
· Quality factor for the image. The quality factor only affects images in JPEG format. The default is 60.
Example:
saveimage "test.jpg" format JPEG bits 24 quality 60;


