←Select platform

Save(RasterImage,Stream,RasterImageFormat,int) Method

Summary
Saves a RasterImage to a stream in any of the supported compressed or uncompressed formats.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public void Save( 
   RasterImage image, 
   Stream stream, 
   RasterImageFormat format, 
   int bitsPerPixel 
) 
- (BOOL)save:(LTRasterImage *)image  
      stream:(LTLeadStream *)stream  
      format:(LTRasterImageFormat)format  
bitsPerPixel:(NSInteger)bitsPerPixel  
       error:(NSError **)error 
public void save(RasterImage image, ILeadStream stream, RasterImageFormat format, int bitsPerPixel) 
public: 
void Save(  
   RasterImage^ image, 
   Stream^ stream, 
   RasterImageFormat format, 
   int bitsPerPixel 
)  
def Save(self,image,stream,format,bitsPerPixel): 

Parameters

image
The RasterImage object that holds the image data.

stream
A Stream where the image data will be saved.

format
The output file format. For valid values, Summary of All Supported 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 File Formats. If  bitsPerPixel is 0, the image will be stored using the closest 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

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

If the image is 8 bits per pixel or greater, use the a LEAD CMP or JPEG compressed format 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 when 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 Document 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 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 multipage file.

Use 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

This example will load a 24 bits/pixel CMP image and save it to a stream as 1 bits/pixel TIF image.

C#
Java
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
 
 
public void SaveStream1Example() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
 
   string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp"); 
   string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_SaveStream1.tif"); 
 
   // Load the source file (make sure to load as 24 bits/pixel) 
   RasterImage image = codecs.Load(srcFileName, 24, CodecsLoadByteOrder.Bgr, 1, 1); 
   Debug.WriteLine("Loaded image has {0} bpp", image.BitsPerPixel); 
 
   // Create a stream for the destination file 
   FileStream fs = File.Create(destFileName); 
 
   // Save it as 1 bpp TIF 
   codecs.Save(image, fs, RasterImageFormat.Tif, 1); 
   fs.Close(); 
 
   image.Dispose(); 
 
   // Check if the image was saved correctly 
   CodecsImageInfo info = codecs.GetInformation(destFileName, false); 
   Debug.WriteLine("Saved image has {0} bpp", info.BitsPerPixel); 
 
   // Clean up 
   codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.*; 
import java.net.*; 
import java.nio.file.Paths; 
import java.util.*; 
import java.time.Instant; 
import java.time.Duration; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.codecs.RasterCodecs.FeedCallbackThunk; 
import leadtools.drawing.internal.*; 
import leadtools.imageprocessing.*; 
import leadtools.imageprocessing.color.ChangeIntensityCommand; 
import leadtools.svg.*; 
 
 
 
public void saveStream1Example() throws IOException { 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   RasterCodecs codecs = new RasterCodecs(); 
 
   String srcFileName = combine(LEAD_VARS_IMAGES_DIR, "Image1.cmp"); 
   String destFileName = combine(LEAD_VARS_IMAGES_DIR, "Image1_SaveStream1.tif"); 
 
   // Load the source file (make sure to load as 24 bits/pixel) 
   RasterImage image = codecs.load(srcFileName, 24, CodecsLoadByteOrder.BGR, 1, 1); 
   System.out.println("Loaded image has " + image.getBitsPerPixel() + " bpp"); 
 
   // Create a stream for the destination file 
   ILeadStream fs = LeadStreamFactory.create(destFileName); 
 
   // Save it as 1 bpp TIF 
   codecs.save(image, fs, RasterImageFormat.TIF, 1); 
   fs.close(); 
 
   // Check if the image was saved correctly 
   CodecsImageInfo info = codecs.getInformation(destFileName, false); 
   assertTrue("Image unsuccessfully saved", (new File(destFileName)).exists()); 
   System.out.println("Saved image has " + info.getBitsPerPixel() + " bpp"); 
 
   // Clean up 
   codecs.dispose(); 
   image.dispose(); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.