Leadtools.Codecs Namespace > RasterCodecs Class : LoadStatus Property |
public RasterExceptionCode LoadStatus {get;}
'Declaration Public ReadOnly Property LoadStatus As RasterExceptionCode
'Usage Dim instance As RasterCodecs Dim value As RasterExceptionCode value = instance.LoadStatus
public RasterExceptionCode LoadStatus {get;}
@property (nonatomic, assign, readonly) LTError loadStatus;
public RasterExceptionCode getLoadStatus()
get_LoadStatus();
public: property RasterExceptionCode LoadStatus { RasterExceptionCode get(); }
A Leadtools.RasterExceptionCode which indicates the result of the most recent load operation.
The most common return values are:
Value | Meaning |
---|---|
RasterExceptionCode.Success | The image loaded by the last load call does not have any errors. |
RasterExceptionCode.CompressedDataFailure | There were errors decoding the last image. The bottom part of the image might be corrupted. |
RasterExceptionCode.BadResyncMarker | Some of the resync markers were incorrect or missing while decoding the last image. Resync markers are used by JPEG files to recover from decoding errors. Portions of the image are corrupted. They are indicated by a checkerboard pattern. |
RasterExceptionCode.FileRead | The file was truncated. The bottom part of the image is missing. |
An error return code is a warning that portions of the image that was last loaded might be corrupted.
This property should be called after a load method has been successfully called. This value is reset after each page is loaded, so if you are loading multiple pages, this error code is valid only for the last page.
If the last load method threw an exception, then this method should not be used, as its return value is undefined.
Note that this property is valid for the current thread. So it should be used in the same thread as the load method.
This is valid for all the methods that will load an image, including Load(String), LoadAsync(String,LeadRect,Int32,CodecsLoadByteOrder,Int32,Int32,Object) and FeedLoad(Byte[],Int32,Int32).
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color Imports Leadtools.Drawing Private Sub LoadStatusExample(ByVal fileName As String) Dim codecs As RasterCodecs = New RasterCodecs() Try Dim image As RasterImage = codecs.Load(fileName, 0, CodecsLoadByteOrder.Bgr, 1, 1) Dim loadStatusCode As RasterExceptionCode = codecs.LoadStatus If loadStatusCode = RasterExceptionCode.Success Then Console.WriteLine("The image was loaded successfully and with no errors") Else Console.WriteLine("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode) End If image.Dispose() Catch ex As RasterException Console.WriteLine("LEADTOOLS could not load this image, error code is is '{0}', message is '{1}'", ex.Code, ex.Message) End Try ' Clean up codecs.Dispose() End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; void LoadStatusExample(string fileName) { RasterCodecs codecs = new RasterCodecs(); try { RasterImage image = codecs.Load(fileName, 0, CodecsLoadByteOrder.Bgr, 1, 1); RasterExceptionCode loadStatusCode = codecs.LoadStatus; if (loadStatusCode == RasterExceptionCode.Success) Console.WriteLine("The image was loaded successfully and with no errors"); else Console.WriteLine("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode); image.Dispose(); } catch (RasterException ex) { Console.WriteLine("LEADTOOLS could not load this image, error code is is '{0}', message is '{1}'", ex.Code, ex.Message); } // Clean up codecs.Dispose(); }
RasterCodecsExamples.prototype.LoadStatusExample = function () { Tools.SetLicense(); with (Leadtools) { with (Leadtools.Codecs) { var fileName = "Assets\\BadExif.jpg"; var codecs = new RasterCodecs(); return Tools.AppInstallFolder().getFileAsync(fileName).then(function (loadFile) { return codecs.loadAsync(LeadStreamFactory.create(loadFile), 0, CodecsLoadByteOrder.bgr, 1, 1) }) .then(function (image) { var loadStatusCode = codecs.loadStatus; if (loadStatusCode == RasterExceptionCode.success) console.info("The image was loaded successfully and with no errors"); else console.info("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode); image.close(); // Clean up codecs.close(); }); } } }
using Leadtools; using Leadtools.Codecs; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; async Task LoadStatusExample(string fileName) { RasterCodecs codecs = new RasterCodecs(); try { StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(fileName); RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile), 0, CodecsLoadByteOrder.Bgr, 1, 1); RasterExceptionCode loadStatusCode = codecs.LoadStatus; if (loadStatusCode == RasterExceptionCode.Success) Debug.WriteLine("The image was loaded successfully and with no errors"); else Debug.WriteLine("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode); image.Dispose(); } catch (Exception ex) { string error = ""; RasterException rasterException = RasterException.FromHResult(ex.HResult); if (rasterException != null) error = rasterException.Message; else error = ex.Message; Debug.WriteLine(error); Assert.Fail(error); } // Clean up codecs.Dispose(); }
using Leadtools; using Leadtools.Codecs; using Leadtools.Examples; using Leadtools.ImageProcessing; using Leadtools.ImageProcessing.Color; using Leadtools.Windows.Media; void LoadStatusExample(Stream inStreamCorrupted) { RasterCodecs codecs = new RasterCodecs(); try { RasterImage image = codecs.Load(inStreamCorrupted, 0, CodecsLoadByteOrder.Bgr, 1, 1); RasterExceptionCode loadStatusCode = codecs.LoadStatus; if(loadStatusCode == RasterExceptionCode.Success) Debug.WriteLine("The image was loaded successfully and with no errors"); else Debug.WriteLine("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode); image.Dispose(); } catch(RasterException ex) { Debug.WriteLine("LEADTOOLS could not load this image, error code is is '{0}', message is '{1}'", ex.Code, ex.Message); } }
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.ImageProcessing Imports Leadtools.ImageProcessing.Color Imports Leadtools.Windows.Media Private Sub LoadStatusExample(ByVal inStreamCorrupted As Stream) Dim codecs As RasterCodecs = New RasterCodecs() Try Dim image As RasterImage = codecs.Load(inStreamCorrupted, 0, CodecsLoadByteOrder.Bgr, 1, 1) Dim loadStatusCode As RasterExceptionCode = codecs.LoadStatus If loadStatusCode = RasterExceptionCode.Success Then Debug.WriteLine("The image was loaded successfully and with no errors") Else Debug.WriteLine("The image was loaded, but it might have corrupted areas, error = {0}", loadStatusCode) End If image.Dispose() Catch ex As RasterException Debug.WriteLine("LEADTOOLS could not load this image, error code is is '{0}', message is '{1}'", ex.Code, ex.Message) End Try End Sub