LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
CodecsSaveImageEventArgs Class
See Also  Members  
Leadtools.Codecs Namespace : CodecsSaveImageEventArgs Class



Provides information for the RasterCodecs.SaveImage event.

Object Model

CodecsSaveImageEventArgs Class

Syntax

Visual Basic (Declaration) 
Public Class CodecsSaveImageEventArgs 
   Inherits System.EventArgs
Visual Basic (Usage)Copy Code
Dim instance As CodecsSaveImageEventArgs
C# 
public class CodecsSaveImageEventArgs : System.EventArgs 
C++/CLI 
public ref class CodecsSaveImageEventArgs : public System.EventArgs 

Example

For an example, refer to RasterCodecs.SaveImage.

Remarks

The Buffer property works as the input and output buffer containing the image data to save. If the value of CodecsSaveOptions.RetrieveDataFromImage is set to false (the default), then the user is always responsible for providing the image data by setting in Buffer. If the value of CodecsSaveOptions.RetrieveDataFromImage is set to true, then the RasterCodecs object will populate the Buffer prior to raising this event. The user can then inspect or modify the scanlines data or simple ignore it to save the original image data as is.

Notice that on either case, the user must provide the scanline data in the source image original format (stored in the Image property. The RasterCodecs object will then convert this data to the appropriate output format if needed, for example, if the user instructed the RasterCodecs object to save the image in a different file format than the original image.

This event can also be used to provide feedback to the user on the save operation progression and a chance for cancellation. To understand the various page and percentages, consider the following example.

File Ocr.tif is a multi-page TIF file containing 4 pages. We want to save pages 2 through 4 (a total of 3 pages). We make the following call:

             private void Test(RasterCodecs rasterCodecsObject)
             {
                // Load the image
                RasterImage image = rasterCodecsObject.Load(@"C:\Users\Public\Documents\LEADTOOLS Images\Ocr.tif");
            
                // Tell the RasterCodecs object to automatically set the image data to save from the source image
                rasterCodecsObject.Options.Save.RetrieveDataFromImage = true;
            
                // Subscribe to the SaveImage event
                rasterCodecsObject.SaveImage += new EventHandler<CodecsSaveImageEventArgs>(rasterCodecsObject_SaveImage);
            
                // Save pages 2 through 4 (total of 3 pages)
                int firstImagePage = 2;
                int lastImagePage = 4;
                int firstFilePage = 1;
            
                // Save
                rasterCodecsObject.Save(
                   image,
                   @"C:\Users\Public\Documents\LEADTOOLS Images\Ocr_pages2through4.tif",
                   RasterImageFormat.Tif,
                   1,
                   firstImagePage,
                   lastImagePage,
                   firstFilePage,
                   CodecsSavePageMode.Overwrite);
            
                // Unsubscribe to the LoadImage event
                rasterCodecsObject.SaveImage -= new EventHandler<CodecsSaveImageEventArgs>(rasterCodecsObject_SaveImage);
            
                image.Dispose();
             }
            
             private void rasterCodecsObject_SaveImage(object sender, CodecsSaveImageEventArgs e)
             {
             }
             

Inside the event handler, we will have the following values:

Member Values
FirstPage Will always be 1 since we specified 1 as the first file page number.
Page Will go from 1 through 3 since we are saving 3 pages total starting as destination (file) page number 1.
LastPage Will always be 3 since we are saving 3 pages from 1 to 3.
ImagePage Will go from 2 through 4 since we are saving existing pages 2, 3, and 4.
PagePercent Will go from 0 to 100 three times since we are saving three pages. This value will reset back to zero whenever Page and ImagePage changes.
TotalPercent Will go from 0 to 100 during the whole saving operation. When this value is 100, all the pages are saved and the method returns.

Inheritance Hierarchy

System.Object
   System.EventArgs
      Leadtools.Codecs.CodecsSaveImageEventArgs

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also