Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Raster imaging C++ Class library help

Zooming In on a Selection: Step 4

Show in webframe

HDC ThisWindowDC;
/* Use GDI functions to outline the area to be cropped. */
if (nFlags == MK_LBUTTON)
{
ThisWindowDC = ::GetDC(this->m_hWnd);
SavedPen = (HPEN)::SelectObject(ThisWindowDC, GetStockObject(WHITE_PEN));
SavedBrush = (HBRUSH)::SelectObject(ThisWindowDC, GetStockObject(NULL_BRUSH));
DisplayMode = GetROP2(ThisWindowDC);
SetROP2(ThisWindowDC, R2_NOT);
if (FirstDraw == FALSE)
Rectangle(ThisWindowDC, StartGDIX, StartGDIY, EndGDIX, EndGDIY);
EndGDIX = point.x;
EndGDIY = point.y;
Rectangle(ThisWindowDC, StartGDIX, StartGDIY, EndGDIX, EndGDIY);
FirstDraw = FALSE;
SetROP2(ThisWindowDC, DisplayMode);
::ReleaseDC(this->m_hWnd, ThisWindowDC); 

}
 

Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.