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



Deprecated - No longer supported. Provides extra options for loading and saving SID images.

Object Model

CodecsSidOptions ClassCodecsSidLoadOptions Class

Syntax

Visual Basic (Declaration) 
Public Class CodecsSidOptions 
Visual Basic (Usage)Copy Code
Dim instance As CodecsSidOptions
C# 
public class CodecsSidOptions 
C++/CLI 
public ref class CodecsSidOptions 

Example

Visual BasicCopy Code
Public Sub CodecsSidOptionsExample()
      Dim codecs As RasterCodecs = New RasterCodecs()

      Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.sid")

      ' Setting new options.
      codecs.Options.Sid.Load.Resolution = New LeadSize(200, 200)

      Dim image As RasterImage = codecs.Load(srcFileName)
      codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "sid.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel)

      ' Clean up
      image.Dispose()
      codecs.Dispose()
   End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
public void CodecsSidOptionsExample()
   {
      RasterCodecs codecs = new RasterCodecs();

      string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.sid");

      // Setting new options.
      codecs.Options.Sid.Load.Resolution = new LeadSize(200, 200);

      RasterImage image = codecs.Load(srcFileName);
      codecs.Save(image,  Path.Combine(LEAD_VARS.ImagesDir, "sid.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel);

      // Clean up
      image.Dispose();
      codecs.Dispose();
   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
SilverlightCSharpCopy Code
SilverlightVBCopy Code

Inheritance Hierarchy

System.Object
   Leadtools.Codecs.CodecsSidOptions

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