←Select platform

Convert(Stream,Stream,RasterImageFormat,int,int,int,CodecsImageInfo) Method

Summary
Converts an image stream from one format to another, creating a new image file in a stream in the new format.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public void Convert( 
   Stream srcStream, 
   Stream destStream, 
   RasterImageFormat format, 
   int width, 
   int height, 
   int bitsPerPixel, 
   CodecsImageInfo info 
) 
- (BOOL)convertStream:(NSString *)srcFile  
    destinationStream:(NSString *)dstFile  
               format:(LTRasterImageFormat)format  
                width:(NSInteger)width  
               height:(NSInteger)height  
         bitsPerPixel:(NSInteger)bitsPerPixel  
                error:(NSError **)error 
public void convert(ILeadStream srcStream, ILeadStream destStream, RasterImageFormat format, int width, int height, int bitsPerPixel, CodecsImageInfo info) 
public: 
void Convert(  
   Stream^ srcStream, 
   Stream^ destStream, 
   RasterImageFormat format, 
   int width, 
   int height, 
   int bitsPerPixel, 
   CodecsImageInfo^ info 
)  

Parameters

srcStream
A Stream containing the data of the input image file.

destStream
A Stream that will contain the data of the output image file.

format
The output file format. For valid values, refer to Summary of All Supported File Formats.

width
New width of the output image. If this value is not 0, then the output file will be resized to the  width value. Use a value of 0 if you do not wish to resize the output file.

height
New height of the output image. If this value is not 0, then the output file will be resized to the  height value. Use a value of 0 if you do not wish to resize the output file.

bitsPerPixel
The output image pixel depth. Note that not all bits per pixel are available to all file formats.

info
A CodecsImageInfo object specifying more options for the conversion.

Remarks

If you convert to a lower bits-per-pixel format, this method optimizes the colors automatically. For example, when converting a 24-bit file (16 million colors) to an 8-bit file (256 colors) this method selects the best 256 colors to represent the 24-bit image

Note that this is a high-level method that does conversion from all possible formats to all possible formats.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
 
public void ConvertExample() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = false; 
 
   string srcPath = LEAD_VARS.ImagesDir; 
   string destPath = Path.Combine(LEAD_VARS.ImagesDir, "GifThumbnails"); 
 
   if (!Directory.Exists(destPath)) 
      Directory.CreateDirectory(destPath); 
 
   const int thumbWidth = 128; 
   const int thumbHeight = 128; 
   LeadRect destRect = new LeadRect(0, 0, thumbWidth, thumbHeight); 
 
   // Get the CMP files in this folder 
   string[] files = Directory.GetFiles(srcPath, "*.cmp"); 
   foreach (string srcFileName in files) 
   { 
      // Make sure that this is a file we can load 
      CodecsImageInfo info = codecs.GetInformation(srcFileName, false); 
      if (info.Format != RasterImageFormat.Unknown) 
      { 
         // Convert to thumbnails (we want to keep the aspect ratio) 
         LeadRect rc = RasterImage.CalculatePaintModeRectangle( 
            thumbWidth, 
            thumbHeight, 
            destRect, 
            RasterPaintSizeMode.FitAlways, 
            RasterPaintAlignMode.Near, 
            RasterPaintAlignMode.Near); 
 
         // rc.Width and Height contains the image size we want with good aspect ratio 
         string name = Path.GetFileNameWithoutExtension(srcFileName); 
         string destFileName = Path.Combine(destPath, name + "_thumb.gif"); 
 
         // Delete the thumbnail if its already there 
         if (File.Exists(destFileName)) 
            File.Delete(destFileName); 
 
         codecs.Convert(srcFileName, destFileName, RasterImageFormat.Gif, rc.Width, rc.Height, 8, info); 
      } 
   } 
 
   // Clean up 
   codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.Codecs Assembly

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