LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Save(RasterImage,Uri,RasterImageFormat,Int32) Method

Show in webframe







The Leadtools.RasterImage object that holds the image data.
The System.Uri containing the output URL name.
The output file format. For valid values, Summary of All Supported Image File Formats.
Resulting file's pixel depth. Note that not all bits per pixel are available to all file formats. For valid values, refer to Summary of All Supported Image File Formats. If bitsPerPixel is 0, the image will be stored using the closet bits/pixel value supported by that format. For example, if a file format supports 1, 4, and 24 bits/pixel, and RasterImage.BitsPerPixel is 5, the file will be stored as 24 bit. Likewise, if RasterImage.BitsPerPixel is 2, the file will be stored as 4 bit.
Saves a Leadtools.RasterImage to a remote URL in any of the supported compressed or uncompressed formats.
Syntax
public HttpStatusCode Save( 
   RasterImage image,
   Uri uri,
   RasterImageFormat format,
   int bitsPerPixel
)
'Declaration
 
Public Overloads Function Save( _
   ByVal image As RasterImage, _
   ByVal uri As Uri, _
   ByVal format As RasterImageFormat, _
   ByVal bitsPerPixel As Integer _
) As HttpStatusCode
'Usage
 
Dim instance As RasterCodecs
Dim image As RasterImage
Dim uri As Uri
Dim format As RasterImageFormat
Dim bitsPerPixel As Integer
Dim value As HttpStatusCode
 
value = instance.Save(image, uri, format, bitsPerPixel)
public HttpStatusCode Save( 
   RasterImage image,
   Uri uri,
   RasterImageFormat format,
   int bitsPerPixel
)

            

            
 function Leadtools.Codecs.RasterCodecs.Save(RasterImage,Uri,RasterImageFormat,Int32)( 
   image ,
   uri ,
   format ,
   bitsPerPixel 
)
public:
HttpStatusCode Save( 
   RasterImage^ image,
   Uri^ uri,
   RasterImageFormat format,
   int bitsPerPixel
) 

Parameters

image
The Leadtools.RasterImage object that holds the image data.
uri
The System.Uri containing the output URL name.
format
The output file format. For valid values, Summary of All Supported Image File Formats.
bitsPerPixel
Resulting file's pixel depth. Note that not all bits per pixel are available to all file formats. For valid values, refer to Summary of All Supported Image File Formats. If bitsPerPixel is 0, the image will be stored using the closet bits/pixel value supported by that format. For example, if a file format supports 1, 4, and 24 bits/pixel, and RasterImage.BitsPerPixel is 5, the file will be stored as 24 bit. Likewise, if RasterImage.BitsPerPixel is 2, the file will be stored as 4 bit.
Remarks

The remote URL defined by uri can be any resource that accepts an HTML "PUT" method. For example, an FTP or SharePoint server.

To setup the authentication and proxy information to use when accessing uri, use UriOperationCredentials and UriOperationProxy.

If the output file format supports multipage and then all the pages in image will be saved to the file.

If the image is 8 bits per pixel or greater, use the LEAD CMP format or one of the JPEG (JTIF or JFIF) formats to save disk space.

If the image is 1-bit per pixel, use the LEAD 1-bit format or a CCITT Group 3 or 4 format to save disk space.

If the image has a region, the region stored in the image will be saved, if the image is saved as one of the TIFF file formats. For more information, refer to Saving A Region. Note, however, that the ability to save a region inside a TIFF file must be unlocked. This requires a Document Imaging or Medical Imaging toolkit.

Only TIFF and DICOM file formats are capable of saving images that have been window-leveled. Images can be window-leveled by calling RasterImage.WindowLevel and specifying RasterWindowLevelMode.PaintAndProcessing, by using the Leadtools.ImageProcessing.Core.WindowLevelCommand or by loading an image from a file format that supports Window Leveling. If a window-leveled image is saved as any other file format, the image data will be converted before being saved. For more information, refer to Saving Window-Leveled Images.

Use the CodecsSaveOptions class to set up other save options parameters before calling this method.

Use FormatSupportsMultipageSave to determine if the format supports saving into a multi-page file.

Use to the SaveImage event to provide progress feedback or to set or modify the saved image data.

This method supports signed data images, but only DICOM and TIFF formats support signed data. This method will throw an exception if you attempt to save a signed image to a format other than DICOM or TIFF.

In LEADTOOLS version 17 and up, when saving a colored image (such as a 24-bits per pixel image) to bitonal (1-bit per pixel), the RasterCodecs object will not use any dithering when converting the image data. This is done because dithering is not the recommended when converting colored images containing text for document processing such as OCR and Barcode. The resulting text will be fuzzy and hard for a recognition engine to process. To save a colored image as bitonal with Floyd-Stein dithering (the behavior of LEADTOOLS 16.5 and earlier) use CodecsSaveOptions.UseImageDitheringMethod along with RasterImage.DitheringMethod as illustrated below:


            // 'codecs' is the RasterCodecs to use when saving
            // 'image' is a colored RasterImage object
            // Setup FloydStein dithering:
            codecs.Options.Save.UseImageDitheringMethod = true;
            image.DitheringMethod = RasterDitheringMethod.FloydStein;
            // Save the image as 1-bpp with auto-dithering:
            codecs.Save(image, fileName, RasterImageFormat.Tif, 1);
            

For information about quality factors, refer to Compression Quality Factors.

Example
For an example, refer to Save(RasterImage image, Uri uri, RasterImageFormat format, int bitsPerPixel, int firstPage, int lastPage).
Requirements

Target Platforms

See Also

Reference

RasterCodecs Class
RasterCodecs Members
Overload List
Implementing Extended FlashPix Support
Loading and Saving Images
Loading and Saving Large Tiff Files
Speeding Up 1-Bit Documents
Working with Markers
Fast File Info

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.