Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.28
|
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;}
@property (nonatomic, assign) LTRasterImageFormat originalFormat
public RasterImageFormat getOriginalFormat() public void setOriginalFormat(RasterImageFormat value)
<br/>get_OriginalFormat();<br/>set_OriginalFormat(value);<br/>Object.defineProperty('OriginalFormat');
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.
This example displays the OriginalFormat of the loaded image.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Core Imports Leadtools.ImageProcessing.Color Imports Leadtools.Controls Imports Leadtools.Dicom Imports Leadtools.Drawing Imports Leadtools.Svg 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
using Leadtools; using Leadtools.Codecs; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Core; using Leadtools.ImageProcessing.Color; using Leadtools.Dicom; using Leadtools.Drawing; using Leadtools.Controls; using Leadtools.Svg; public void OriginalFormatExample() { RasterCodecs codecs = new RasterCodecs(); RasterImage image = codecs.Load(Path.Combine(ImagesPath.Path, "OCR1.TIF")); string s = ("Original Format: " + image.OriginalFormat); Console.WriteLine(s); image.Dispose(); codecs.Dispose(); }
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(); }); } } }
using Leadtools; using Leadtools.Codecs; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Core; using Leadtools.ImageProcessing.Color; using Leadtools.Dicom; 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(); }
using Leadtools; using Leadtools.Codecs; using Leadtools.Dicom; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Core; using Leadtools.ImageProcessing.Color; using Leadtools.Examples; using Leadtools.Windows.Media; public void OriginalFormatExample(RasterImage image) { string s = ("Original Format: " + image.OriginalFormat); Debug.WriteLine(s); image.Dispose(); }
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.Dicom Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Core Imports Leadtools.ImageProcessing.Color Imports Leadtools.Windows.Media Public Sub OriginalFormatExample(ByVal image As RasterImage) Dim s As String = ("Original Format: " & image.OriginalFormat) Debug.WriteLine(s) image.Dispose() End Sub