#include "ltwrappr.h"
virtual L_INT LPaintEffect::DrawGradient(pRect, uStyle)
LPRECT pRect; |
the bounding rectangle |
L_UINT uStyle; |
the gradient style |
Draws a rectangle into the target device context, and then fills the rectangle with a gradient.
Parameter |
Description |
pRect |
The bounding rectangle. |
uStyle |
The gradient style. For possible values, refer to Effect Gradient Styles. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Use LPaintEffect::SetGradientParameters to control the properties of the gradient.
Required DLLs and Libraries
LTDIS For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
Win32, x64.
Functions: |
|
Topics: |
L_INT LPaintEffect__DrawGradientExample(LBitmapBase& LeadBitmap,HDC hDC)
{
L_INT nRet;
LPaintEffect LeadPaintEffect ;
GRADIENTDLGPARAMS GradDlgParm;
RECT Rect ;
LeadPaintEffect.SetBitmap(&LeadBitmap) ;
LeadPaintEffect.SetDC(hDC) ;
LeadPaintEffect.GetGradientParameters(&GradDlgParm) ;
GradDlgParm.uSteps = 3 ;
nRet = LeadPaintEffect.SetGradientParameters(&GradDlgParm) ;
if(nRet != SUCCESS)
return nRet;
Rect.left = 0 ;
Rect.top = 0 ;
Rect.right = LeadBitmap.GetWidth() ;
Rect.bottom = LeadBitmap.GetHeight() ;
nRet = LeadPaintEffect.DrawGradient(&Rect,EFX_GRADIENT_CONE_FROM_RB) ;
if(nRet != SUCCESS)
return nRet;
LeadPaintEffect.SetDC(0);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document