Leadtools Namespace > RasterImage Class : OriginalFormat Property |
public RasterImageFormat OriginalFormat {get; set;}
'Declaration Public Property OriginalFormat As RasterImageFormat
'Usage Dim instance As RasterImage Dim value As RasterImageFormat instance.OriginalFormat = value value = instance.OriginalFormat
public RasterImageFormat OriginalFormat {get; set;}
get_OriginalFormat();
set_OriginalFormat(value);
public: property RasterImageFormat OriginalFormat { RasterImageFormat get(); void set ( RasterImageFormat value); }
When a RasterImage object is created by loading it from an image file, this property will hold the format type of the file as a RasterImageFormat enumeration member.
If the RasterImage was created by other means (for example, through the RasterImage constructor or scanning), the value of this property will be RasterImageFormat.Unknown.
Public Sub OriginalFormatExample() Dim codecs As RasterCodecs = New RasterCodecs() Dim image As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "OCR1.TIF")) Dim s As String = ("Original Format: " & image.OriginalFormat) Console.WriteLine(s) 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 OriginalFormatExample() { RasterCodecs codecs = new RasterCodecs(); RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "OCR1.TIF")); string s = ("Original Format: " + image.OriginalFormat); Console.WriteLine(s); image.Dispose(); codecs.Dispose(); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
RasterImageExamples.prototype.OriginalFormatExample = function ( ) { Tools.SetLicense ( ) ; with (Leadtools) { with (Leadtools.Codecs) { var codecs = new RasterCodecs(); var srcFileName = "Assets\\OCR1.TIF"; var image; return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) { return codecs.loadAsync(LeadStreamFactory.create(loadFile)) }) .then(function (img) { image = img; var s = ("Original Format: " + image.originalFormat); console.info(s); image.close(); codecs.close(); }); } } }
[TestMethod] public async Task OriginalFormatExample() { RasterCodecs codecs = new RasterCodecs(); string srcFileName = @"Assets\OCR1.TIF"; StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName); RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile)); string s = ("Original Format: " + image.OriginalFormat); Debug.WriteLine(s); image.Dispose(); codecs.Dispose(); }
public void OriginalFormatExample(RasterImage image) { string s = ("Original Format: " + image.OriginalFormat); Debug.WriteLine(s); image.Dispose(); }
Public Sub OriginalFormatExample(ByVal image As RasterImage)
Dim s As String = ("Original Format: " & image.OriginalFormat)
Debug.WriteLine(s)
image.Dispose()
End Sub
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