#include "ltdoc2.h"
L_LTDOC2_API L_INT L_Doc2SetPaintZoomFactorExt(hDoc, nDocId, nPageIndex, fZoomFactor)
Sets the zoom factor used to draw the specified OCR page.
Handle to the OCR document.
Document ID created by calling L_Doc2CreateDocument.
Zero-based index of the page for which to set the zoom factor.
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.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
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 as well.
To draw the specified page using the specified zoom factor, call L_Doc2DrawPage / L_Doc2DrawPageExt.
To get the zoom factor for a specific page, call L_Doc2GetPaintZoomFactor / L_Doc2GetPaintZoomFactorExt.
Required DLLs and Libraries
L_INT Doc2SetPaintZoomFactorExampleExt(L_HDOC2 hDoc, L_INT nDocId, HWND hWnd)
{
L_INT nRet;
HDC hdc = NULL;
PAGEINFO2 PageInfo;
RECT rcDst;
L_FLOAT fZoom;
ZeroMemory(&PageInfo, sizeof(PAGEINFO2));
hdc = GetDC(hWnd);
nRet = L_Doc2SetActivePageExt(hDoc, nDocId, 0);
if(nRet != SUCCESS)
return nRet;
nRet = L_Doc2GetPaintZoomFactorExt(hDoc, nDocId, 0, &fZoom);
if(nRet != SUCCESS)
return nRet;
if (fZoom != 100.0)
{
nRet = L_Doc2SetPaintZoomFactorExt(hDoc, nDocId, 0, 100);
if(nRet != SUCCESS)
return nRet;
}
nRet = L_Doc2GetPageInfoExt (hDoc, nDocId, 0, &PageInfo, sizeof(PAGEINFO2));
if(nRet != SUCCESS)
return nRet;
SetRect(&rcDst, 0, 0, PageInfo.nWidth, PageInfo.nHeight);
nRet = L_Doc2DrawPageExt(hDoc, hdc, nDocId, 0, NULL, NULL, &rcDst, NULL, SRCCOPY, TRUE);
if(nRet != SUCCESS)
return nRet;
ReleaseDC(hWnd, hdc);
return SUCCESS;
}