L_Doc2SetPaintZoomFactor

#include "ltdoc2.h"

L_LTDOC2_API L_INT EXT_FUNCTION L_Doc2SetPaintZoomFactor(hDoc, nPageIndex, fZoomFactor)

Sets the zoom factor used to draw the specified OCR page.

Parameters

L_HDOC2 hDoc

Handle to the OCR document.

L_INT nPageIndex

Index of the page for which to set the zoom factor. This index is zero-based.

L_FLOAT fZoomFactor

Specifies the zoom factor used when drawing the specified OCR page. A value of 100 represents normal display; a value of 200 represents a 2X display; a value of 50 represents a 1/2X display; etc.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

The page specified in the nPageIndex may or may not have zones. If the page has zones, the zones will be drawn using the zoom factor too.

To draw the specified page, using the specified zoom factor, call the L_Doc2DrawPage / L_Doc2DrawPageExt function.

To get the zoom factor for a specific page, call the L_Doc2GetPaintZoomFactor / L_Doc2GetPaintZoomFactorExt function.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT Doc2SetPaintZoomFactorExample(L_HDOC2 hDoc,HWND hWnd) 
{ 
   L_INT nRet; 
   HDC hdc = NULL; 
   PAGEINFO2 PageInfo; 
   RECT rcDst; 
   L_FLOAT fZoom; 
 
   ZeroMemory(&PageInfo, sizeof(PAGEINFO2)); 
   hdc = GetDC(hWnd); 
 
   nRet = L_Doc2SetActivePage(hDoc, 0); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   nRet = L_Doc2GetPaintZoomFactor(hDoc, 0, &fZoom); 
   if(nRet != SUCCESS) 
      return nRet; 
   if (fZoom != 100.0) 
   { 
      nRet = L_Doc2SetPaintZoomFactor(hDoc, 0, 100); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
 
   nRet = L_Doc2GetPageInfo (hDoc, 0, &PageInfo, sizeof(PAGEINFO2)); 
   if(nRet != SUCCESS) 
      return nRet; 
   SetRect(&rcDst, 0, 0, PageInfo.nWidth, PageInfo.nHeight); 
 
   nRet = L_Doc2DrawPage(hDoc, hdc, 0, NULL, NULL, &rcDst, NULL, SRCCOPY, TRUE); 
   if(nRet != SUCCESS) 
      return nRet; 
   ReleaseDC(hWnd, hdc); 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS OCR Module - OmniPage Engine C API Help