Provides extra options for loading and saving WMF images.
Object Model
Syntax
Visual Basic (Declaration) | |
---|
Public Class CodecsWmfOptions |
C# | |
---|
public class CodecsWmfOptions |
C++/CLI | |
---|
public ref class CodecsWmfOptions |
Example
Visual Basic | Copy Code |
---|
Public Sub CodecsWmfOptionsExample()
RasterCodecs.Startup()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim srcFileName As String = LeadtoolsExamples.Common.ImagesPath.Path + "Image1.cmp"
codecs.Options.Wmf.Load.XResolution = 500
codecs.Options.Wmf.Load.YResolution = 500
Dim image As RasterImage = codecs.Load(srcFileName)
codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "WmfImage.wmf", RasterImageFormat.Wmf, image.BitsPerPixel)
image = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "WmfImage.wmf")
codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "wmf.bmp", RasterImageFormat.Bmp, image.BitsPerPixel)
image.Dispose()
codecs.Dispose()
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
public void CodecsWmfOptionsExample() { RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); string srcFileName = LeadtoolsExamples.Common.ImagesPath.Path + "Image1.cmp"; //Setting new options. codecs.Options.Wmf.Load.XResolution = 500; codecs.Options.Wmf.Load.YResolution = 500; RasterImage image = codecs.Load(srcFileName); codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "WmfImage.wmf", RasterImageFormat.Wmf, image.BitsPerPixel); image = codecs.Load( LeadtoolsExamples.Common.ImagesPath.Path + "WmfImage.wmf"); codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "wmf.bmp", RasterImageFormat.Bmp, image.BitsPerPixel); // Clean up image.Dispose(); codecs.Dispose(); RasterCodecs.Shutdown(); } |
Inheritance Hierarchy
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also