available: SWFKit Pro
Manipulates images. Before you can manipulate an image, load it by the "load" method or capture an image by the "captureScreen" method or the "captureMovie" method. You can also get an image from clipboard by the "Application.clipboard.pasteBitmap" method. All these methods return an instance of the Image object.
The Image object also provides methods to access the TWAIN interface. The TWAIN interface feature is not available for Screen Savers.
The supported image formats are:
Remarks
The Image object supports the TWAIN interface, you can use it to scan images using a scanner:
Image.twainInit();
Image.twainSelectSource();
var imgs = [];
Image.twainAcquire();
Image.onCopyImage = function (image)
{
imgs.push(image);
image.loadImage(1);
}