Deprecated - No longer supported. Provides extra options for loading and saving SID images.
Object Model
Syntax
Visual Basic (Declaration) | |
---|
Public Class CodecsSidOptions |
C# | |
---|
public class CodecsSidOptions |
C++/CLI | |
---|
public ref class CodecsSidOptions |
Example
Visual Basic | Copy 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";
} |
SilverlightCSharp | Copy Code |
---|
|
SilverlightVB | Copy Code |
---|
|
Inheritance Hierarchy
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