Leadtools.Codecs Namespace : CodecsPtokaOptions Class |
public class CodecsPtokaOptions
'Declaration Public Class CodecsPtokaOptions
'Usage Dim instance As CodecsPtokaOptions
public sealed class CodecsPtokaOptions
function Leadtools.Codecs.CodecsPtokaOptions()
public ref class CodecsPtokaOptions
Public Sub CodecsPtokaOptionsExample() Dim codecs As RasterCodecs = New RasterCodecs() Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.ptk") ' Setting new options. codecs.Options.Ptoka.Load.Resolution = 500 Dim image As RasterImage = codecs.Load(srcFileName) ' 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
public void CodecsPtokaOptionsExample() { RasterCodecs codecs = new RasterCodecs(); string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.ptk"); // Setting new options. codecs.Options.Ptoka.Load.Resolution = 500; RasterImage image = codecs.Load(srcFileName); // Clean up image.Dispose(); codecs.Dispose(); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2