LPaintEffect::SetFillBitmap

Summary

Sets the background bitmap and rectangle. This bitmap will be used in LPaintEffect::Draw3dShape.

Syntax

#include "ltwrappr.h"

L_INT LPaintEffect::SetFillBitmap(pBitmap, prcBack=NULL)

Parameters

LBitmapBase * pBitmap

Pointer to an LBitmapBase object that references the background bitmap to be used for background painting.

LPRECT prcBack

The background rectangle.

Returns

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

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LPaintEffect__SetFillBitmapExample(HDC hDC) 
{ 
   L_INT nRet; 
   LBitmapBase LeadBitmap; 
   LBitmapBase LeadFillBitmap; 
   LPaintEffect LeadPaintEffect ; 
   RECT Rect ; 
   HRGN hRgn; 
 
   nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("image1.cmp"))) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   LeadPaintEffect.SetBitmap(&LeadBitmap) ; 
   LeadPaintEffect.SetDC(hDC); 
 
   Rect.left = 10 ; 
   Rect.top = 10 ; 
   Rect.right = 60 ; 
   Rect.bottom = 60 ; 
    
   if (LeadPaintEffect.GetFillBitmap() == NULL) 
   { 
      nRet = LeadFillBitmap.Load(MAKE_IMAGE_PATH(TEXT("image2.cmp"))) ; 
      if(nRet != SUCCESS) 
         return nRet; 
 
      nRet = LeadPaintEffect.SetFillBitmap(&LeadBitmap,&Rect) ; 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   nRet = LeadPaintEffect.Draw3dShape(&Rect,EFX_SHAPE_RECTANGLE) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   Rect.left += 10 ; 
   Rect.top += 10 ; 
   Rect.right += 10 ; 
   Rect.bottom += 10 ; 
 
   hRgn = CreateEllipticRgn(Rect.left,Rect.top,Rect.right,Rect.bottom) ; 
 
   nRet = LeadPaintEffect.Draw3dShape(&Rect,hRgn) ; 
   if(nRet != SUCCESS) 
      return nRet; 
 
   LeadPaintEffect.SetDC(0); 
 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.