ImageEn, unit iemview

TImageEnMView.MIO

TImageEnMView.MIO


Declaration

property MIO: TImageEnMIO;


Description

Returns the TImageEnMIO component embedded in the TImageEnMView, which provides all functionality for loading and saving images, and other I/O functions, such as printing and scanning.


Example

// Load the frames of an AVI video
ImageEnMView1.MIO.LoadFromFile('C:\film.avi');


// Prompt to print the pages of a TIFF image
ImageEnMView1.MIO.LoadFromFile( 'C:\MyImage.tiff' );
ImageEnMView1.MIO.DoPrintPreviewDialog();


// Acquire images from a scanner
ImageEnMView1.MIO.Acquire();


// Prompt the user to print thumbnail sheets
ImageEnMView1.MIO.DoPrintPreviewDialog();




// Prompt the user to save thumbnail/contact sheets
ImageEnMView1.MIO.DoSavePreviewDialog();