L_PaintDCBufferCallback

#include "l_bitmap.h"

L_LTDIS_API L_INT L_PaintDCBufferCallback(pCallbackData, pBitmap, pSrc, pSrcClip, pDest, pDestClip, uROP3, pBuffer, nBufferRow, nNumRows)

pPAINTCALLBACKDATA pCallbackData;

pointer to the callback data structure

pBITMAPHANDLE pBitmap;

pointer to the bitmap handle

L_RECT * pSrc;

pointer to the display source rectangle

L_RECT * pSrcClip;

pointer to the display source clipping rectangle

L_RECT * pDest;

pointer to the display destination rectangle

L_RECT * pDestClip;

pointer to the display destination clipping rectangle

L_UINT32 uROP3;

windows ROP code for display

L_UCHAR * pBuffer;

pointer to the source buffer

L_INT nBufferRow;

first row to paint

L_INT nNumRows;

number of rows to paint

Paints image data from a buffer using paint callbacks.

Parameter

Description

pCallbackData

Pointer to a structure containing the device context (DC) and the paint callbacks. The mapping mode of the device context must be MM_TEXT.

pBitmap

Pointer to the bitmap handle that describes the image to paint.

pSrc

Pointer to the Windows RECT structure that specifies the part of the bitmap to use as the display source.

 

The coordinates in the RECT structure are relative to the bitmap. You can pass NULL to use the default, which matches the bitmap.

pSrcClip

Pointer to the Windows RECT structure that specifies the portion of the display source to paint. Generally, this is used for updating the display when part of the source bitmap has changed.

 

The coordinates in the RECT structure are relative to the bitmap. You can pass NULL to use the default, which matches the bitmap.

pDest

Pointer to the Windows RECT structure that determines how the source rectangle is scaled and how the image is positioned in the device context.

 

The coordinates in the RECT structure are relative to the device context. There is no default for this parameter. You must specify the RECT structure.

pDestClip

Pointer to the Windows RECT structure that specifies the portion of the display rectangle to paint. Generally, this is used for updating changes in the display surface, such as when a user moves another window, uncovering a part of the image that had been covered up.

 

The coordinates in the RECT structure are relative to the device context. You can pass NULL to use the default, which matches the device context. In most cases, however, you should use the rectangle returned by the Windows WM_PAINT message.

uROP3

The Windows ROP code that determines how the destination rectangle is updated. This parameter takes the same codes as the Windows BitBlt function. For ordinary painting, use SRCCOPY.

pBuffer

Pointer to the buffer that contains the image data to paint.

nBufferRow

The first row to paint. The painted portion of any row may be limited by the RECT parameters.

nNumRows

The number of rows to paint. The painted portion of any row may be limited by the RECT parameters. If the image data in pBuffer is compressed 1-bit data, you can specify the number of lines as a negative value (-nLines), as explained in Speeding Up 1-Bit Documents.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

The HDC you are painting to should stored in the PAINTCALLBACKDATA structure. Please refer to its documentation for details on which GDI functions you can override.

This function references a LEAD bitmap handle, which may or may not have a loaded bitmap. In either case, the following fields must be specified in the BITMAPHANDLE structure:

Except for the buffer specifications, this function uses source and destination rectangles the same as L_PaintDC. For a complete explanation, refer to L_PaintDC.

You can call L_PaintDCBufferCallback from a callback function to paint an image while a bitmap is being loaded. This technique is used in the FILEREADCALLBACK procedures in the DEMO.C example program.

Required DLLs and Libraries

LTDIS

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Win32, x64.

See Also

Functions:

L_PaintDC, L_WindowLevel, L_RectToBitmap, L_RectFromBitmap, L_PaintDCBufferCallback, L_PaintDCCallback, L_PaintDCCMYKArray, L_PaintDCOverlay, L_PaintDCOverlayCallback, L_PaintRgnDC,  L_PaintRgnDCBuffer, L_PaintRgnDCBufferCallback, L_PaintRgnDCCallback, L_PaintRgnDCEffect

Topics:

Raster Image Functions: Displaying Images

 

Paint Using Custom Callbacks

 

Raster Image Functions: Palettes

 

Handling Palette Changes

 

Raster Image Functions: Using Custom Paint

 

Support Functions: Callbacks

 

Paint Using Custom Callbacks

Example

Gets the data one line at a time and paints it.

L_INT PaintDCBufferExample(L_HWND hWnd, pBITMAPHANDLE pBitmap) 
{ 
   L_INT    nRet=SUCCESS; 
   HDC      hdc;                    /* Device context for the current window */ 
   RECT     rcDest;                 /* Destination rectangle for painting */ 
   HPALETTE hSavedPalette = NULL;   /* Temporary copy of the current system palette */ 
   HPALETTE hOurPalette = NULL;     /* The palette that we will use to paint */ 
   L_INT    x; 
   PAINTCALLBACKDATA PaintCallbackData; /* Paint callback data structure */ 
   /* Get the device context */ 
   hdc = GetDC (hWnd); 
   /* Set the destination rectangle to be the same as the bitmap. 
   Other painting rectangles can take defaults. */ 
   GetClientRect(hWnd, &rcDest); 
   /* Create the palette that we will use to paint */ 
   hOurPalette = L_CreatePaintPalette (hdc, pBitmap); 
   /* Select our palette and save the old one */ 
   hSavedPalette = SelectPalette (hdc, hOurPalette, FALSE); 
   /* Realize our palette */ 
   RealizePalette (hdc); 
   /* Initialize the paint callback data structure */ 
   memset(&PaintCallbackData, 0, sizeof(PaintCallbackData)); 
   PaintCallbackData.uStructSize = sizeof(PAINTCALLBACKDATA); 
   PaintCallbackData.pDisplay = hdc; 
   /* set the paint callbacks for the GDI functions you are overriding here 
   PaintCallbackData.pIsCompatibleDC = MyIsCompatibleDC; 
   PaintCallbackData.pStretchDIBits = MyStretchDIBits; 
   etc 
   */ 
   /* Paint the image */ 
   L_AccessBitmap(pBitmap); 
   for(x=0; x<pBitmap->Height; x++) 
   { 
      L_UCHAR *pBuf = (L_UCHAR*)malloc(pBitmap->BytesPerLine); 
      L_GetBitmapRow(pBitmap, pBuf, x, pBitmap->BytesPerLine); 
      nRet = L_PaintDCBufferCallback(&PaintCallbackData, pBitmap, NULL, NULL, &rcDest, NULL, SRCCOPY, pBuf, x, 1); 
   } 
   L_ReleaseBitmap(pBitmap); 
   /* Restore the old palette */ 
   SelectPalette (hdc, hSavedPalette, FALSE); 
   /* Delete the newly created palette */ 
   DeleteObject (hOurPalette); 
   /* Release the device context */ 
   ReleaseDC(hWnd, hdc); 
   return nRet; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C API Help