virtual L_INT LBitmapBase::GetRowCompressed(pLRunBuffer, nRow, nLines=1, pWorkBuffer=NULL)
Retrieves one or more rows of 1-bit compressed data from a class objects bitmap that has been loaded in its compressed format.
Pointer to an LBuffer object that will receive the retrieved row(s).
The number of the row to retrieve. The first row is 0 and the last row is 1 less than the bitmap height.
The number of lines to retrieve.
A pointer to an optional work buffer. You can also pass NULL. Allocating the work buffer speeds processing if you call this function more than once, because if you do not allocate a work buffer, the function allocates and frees a temporary buffer each time it is called. The size of this buffer should be the same as the value returned by LBitmapBase::GetBytesPerLine.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Retrieves a row (or part of a row) of 1-bit compressed data from a class objects bitmap that has been loaded in its compressed format.
This function is useful for working with 1-bit images that are loaded in their compressed formats for faster loading and display. For more information, refer to Speeding Up 1-Bit Documents.
Win32, x64.
This example demonstrates the low-level functions for accessing
1-bit compressed bitmap data. It demonstrates the ability to get and put
rows, and the ability to process rows in buffer-to-buffer processing.
The result of the function is the first 50 lines are inverted.
L_INT LBitmapBase__GetRowCompressedExample(L_TCHAR * pszFilename, HWND hWnd)
{
UNREFERENCED_PARAMETER(hWnd);
L_INT nRet;
LBitmapBase LeadBitmap; /* Bitmap handle for the image */
LBuffer Buffer;
LBuffer RunBuffer;
L_INT nRow = 0; /* first row to get */
L_INT nYSize = 50; /* # of rows to get */
/* Load the bitmap, as compressed */
LeadBitmap.File()->SetFileName(pszFilename);
nRet =LeadBitmap.File()->LoadFile(1,0,LOADFILE_COMPRESSED | LOADFILE_ALLOCATE | LOADFILE_STORE);
if(nRet !=SUCCESS)
return nRet;
/* if the ViewPerspective is not TOP_LEFT or BOTTOM_LEFT, make it TOP_LEFT */
/* Get/PutRow functions only work with TOP_LEFT or BOTTOM_LEFT */
if ( (LeadBitmap. GetViewPerspective() != TOP_LEFT)|| (LeadBitmap.GetViewPerspective() != BOTTOM_LEFT) )
{
nRet =LeadBitmap.ChangeViewPerspective (TOP_LEFT );
if(nRet !=SUCCESS)
return nRet;
}
if (LeadBitmap.GetViewPerspective()== BOTTOM_LEFT)
nRow = LeadBitmap.GetHeight() - nRow - nYSize;
/* Allocate the buffers */
nRet =Buffer.Reallocate((((LeadBitmap.GetWidth() + 31) &~31)/ 8) * nYSize);
if(nRet !=SUCCESS)
return nRet;
nRet =RunBuffer.Reallocate((L_UINT32)((LeadBitmap.GetWidth() + 3) * 2) * nYSize);
if(nRet !=SUCCESS)
return nRet;
/* Access the bitmap */
nRet =LeadBitmap.Access();
if(nRet !=SUCCESS)
return nRet;
/* Get the top nRow lines */
nRet =LeadBitmap.GetRowCompressed (&RunBuffer, nRow, nYSize,0);
if(nRet !=SUCCESS)
return nRet;
nRet =LeadBitmap.PutRowCompressed (RunBuffer, nRow, nYSize,0);
if(nRet !=SUCCESS)
return nRet;
nRet =LeadBitmap.Release();
if(nRet !=SUCCESS)
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