L_Doc2DrawPage

#include "ltdoc2.h"

L_LTDOC2_API L_INT EXT_FUNCTION L_Doc2DrawPage(hDoc, hDC, nPageIndex, pSrc, pClipSrc, pDst, pClipDst, uROP3, bShowZones)

L_HDOC2 hDoc;

handle to the OCR document

HDC hDC;

handle to the target device context

L_INT nPageIndex;

page index

LPRECT pSrc;

pointer to the display source rectangle

LPRECT pClipSrc;

pointer to the display source clipping rectangle

LPRECT pDst;

pointer to the display destination rectangle

LPRECT pClipDst;

pointer to the display destination clipping rectangle

L_UINT32 uROP3;

windows ROP code for display

L_BOOL bShowZones;

draw page zones flag

Displays the specified page with(out) its zones, at any size, on any device context (screen, printer, or memory DC). If the display surface has fewer colors than the image, this function dithers the output to that display surface without affecting the actual image data.

Parameter Description
hDoc Handle to the OCR document
hDC Handle to a device context, such as a screen, to use as the display surface. The mapping mode of the device context must be MM_TEXT.
nPageIndex The index of the page that will be drawn. This index is zero-based.
pSrc Pointer to a Windows RECT structure that specifies the part of the bitmap to be used as the display source.
  The coordinates in the RECT structure are relative to the bitmap. Pass NULL to use the default, which matches the bitmap.
pClipSrc Pointer to a Windows RECT structure that specifies the portion of the display source to be painted. 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. Pass NULL to use the default, which matches the bitmap.
pDst Pointer to a 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.
pClipDst Pointer to a Windows RECT structure that specifies the portion of the display rectangle to be painted. 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. Pass NULL to use the default, which matches the device context. In most cases, 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.
  Pointer to a Windows RECT structure that specifies the part of the bitmap to be used as the display source.
bShowZones Specifies whether the page zones will be drawn.  Possible values are:
  Value Meaning
  TRUE Draw the page zones
  FALSE Do not draw the page zones.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Before calling this function, you must specify the active page that will be drawn.

If L_Doc2SetActivePage is not called, then this function will return an error, ERROR_DOC_ACTIVE_PAGE.

This function lets you specify a source rectangle (with coordinates relative to the bitmap) and a destination rectangle (with coordinates relative to the device context). Scaling of the displayed image depends on the relationship between these two rectangles, as shown in the following illustration.

Note:

These illustrations are for a bitmap with a TOP_LEFT view perspective. For an explanation of bitmap coordinates and view perspectives, refer to Accounting for View Perspective, in the Raster C API help file. If the bitmap is not in TOP_LEFT view perspective, refer to Changing Bitmap Coordinates in the Raster C API help file.

image\paint1.gif

In addition, you can specify a clipping area within either rectangle to limit the area to be painted. For the destination rectangle, a clipping area is commonly specified to repaint part of the image that was temporarily covered up. For a source rectangle, you can use a clipping area to update the display when only part of the image in the source rectangle has changed.

The following illustration shows how specifying a source clipping area affects the display. Text has been added to the source bitmap (using the bitmap as a display surface), and the source clipping area specifies the area to be repainted.

image\paint2.gif

You can specify the various rectangles in any way that meets your needs. Coordinates can have negative values and they can extend beyond the bounds of the bitmap or the device context. In fact, it is common for the display rectangle to be bigger than the device context, where scroll bars are used to see different parts of the image.

In simple cases, you can use this function as follows:

image\paint3.gif

Required DLLs and Libraries

LTDOC2

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

See Also

Functions:

L_Doc2LockPage, L_Doc2UnlockPage, L_Doc2SetActivePage, L_Doc2SelectZoneByPoint, L_Doc2SelectZone, L_Doc2RemoveSelectedZone, L_Doc2SetZonePen, L_Doc2SetSelectedZonePen, L_Doc2GetSelectedZone, L_Doc2Zone

Topics:

OCR Functions: Drawing Zones and Pages

 

Drawing Pages and Zones

Example

L_INT Doc2DrawPageExample(L_HDOC2 hDoc,HWND hWnd) 
{ 
   L_INT nRet; 
   HDC hdc = NULL; 
   HPEN hSelectedPen = NULL; 
   HPEN hOldSelectedPen = NULL; 
   HPEN hPen = NULL; 
   HPEN hOldPen = NULL; 
   PAGEINFO2 PageInfo; 
   RECT rcDst; 
   memset(&PageInfo, 0, sizeof(PAGEINFO2)); 
   hdc = GetDC(hWnd); 
   nRet = L_Doc2SetActivePage(hDoc, 0); 
   if(nRet != SUCCESS) 
      return nRet; 
   hSelectedPen = CreatePen(PS_SOLID, 2, RGB(255, 255, 0)); 
   if (hSelectedPen) 
      hOldSelectedPen = L_Doc2SetSelectedZonePen(hDoc, hSelectedPen); 
   hPen = CreatePen(PS_SOLID, 2, RGB(255, 0, 255)); 
   if (hPen) 
      hOldPen = L_Doc2SetZonePen(hDoc, hSelectedPen); 
   nRet = L_Doc2GetPageInfo (hDoc, 0, &PageInfo, sizeof(PAGEINFO2)); 
   if(nRet != SUCCESS) 
      return nRet; 
   SetRect(&rcDst, 0, 0, PageInfo.nWidth, PageInfo.nHeight); 
   nRet = L_Doc2SelectZone(hDoc, hdc, 0, 0, TRUE); 
   if(nRet != SUCCESS) 
      return nRet; 
   nRet = L_Doc2DrawPage(hDoc, hdc, 0, NULL, NULL, &rcDst, NULL, SRCCOPY, TRUE); 
   if(nRet != SUCCESS) 
      return nRet; 
   if (hOldSelectedPen) 
      L_Doc2SetSelectedZonePen(hDoc, hOldSelectedPen); 
   if (hOldPen) 
      L_Doc2SetZonePen(hDoc, hOldPen); 
   ReleaseDC(hWnd, hdc); 
   return SUCCESS; 
} 

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