#include "l_bitmap.h"
L_LTFIL_API L_INT L_GetLoadStatus();
Detects whether the image that was last loaded has an error.
Value | Meaning |
---|---|
SUCCESS | The image loaded by the last load call does not have any errors. |
ERROR_COMPRESSED_DATA_FAILURE | There were errors decoding the last image. The bottom part of the image might be corrupted. |
ERROR_BAD_RESYNC_MARKER | 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. |
ERROR_FILE_READ | The file was truncated. The bottom part of the image is missing. |
ERROR_PDF_BAD_CONTENT | The file may not been loaded completely or it may have missing parts. |
< 1 | Another error occurred while loading the last image. Refer to Return Codes. |
The returned error code describes a warning that portions of the image that was last loaded might be corrupted.
This function should be called after a load function returned SUCCESS. 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 function returned an error code, then this function should not be used, as its return value is undefined.
Note that the return value is valid for the current thread. So L_GetLoadStatus should be called in the same thread as the load function.
This function is valid for all of the functions that will load a bitmap. Examples of such functions: L_LoadBitmap, L_LoadFile, L_LoadFileOffset, L_FeedLoad, etc.
Required DLLs and Libraries
Win32, x64, Linux.
This example will load an image and display a message box indicating whether the image has corrupted areas or not
L_INT LoadStatusExample(HWND hWnd)
{
L_INT nRet;
BITMAPHANDLE Bitmap;
nRet = L_LoadBitmap(MAKE_IMAGE_PATH(TEXT("IMAGE1.CMP")), &Bitmap, sizeof(BITMAPHANDLE), 24, ORDER_BGR, NULL, NULL);
if(nRet == SUCCESS)
{
L_INT nLoadStatus = L_GetLoadStatus();
if(nLoadStatus == SUCCESS)
MessageBox(hWnd, TEXT("The image was loaded successfully and with no errors"), TEXT("SUCCESS"), MB_OK);
else
MessageBox(hWnd, TEXT("The image was loaded, but it might have corrupted areas"), TEXT("Warning!"), MB_OK);
if(Bitmap.Flags.Allocated)
L_FreeBitmap(&Bitmap);
}
else
{
MessageBox(hWnd, TEXT("The load failed!"),TEXT("ERROR"), MB_OK);
return nRet;
}
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document