Blends two images with alpha channel.
Syntax
'Declaration
Public Shared Sub BlendWithAlpha( _
ByVal As ImGearRasterPage, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As ImGearRasterPage _
)
'Usage
Dim page1 As ImGearRasterPage
Dim left As Integer
Dim top As Integer
Dim page2 As ImGearRasterPage
ImGearRasterProcessing.BlendWithAlpha(page1, left, top, page2)
public static void BlendWithAlpha(
ImGearRasterPage ,
int ,
int ,
ImGearRasterPage
)
public: static void BlendWithAlpha(
ImGearRasterPage* ,
int ,
int ,
ImGearRasterPage*
)
public:
static void BlendWithAlpha(
ImGearRasterPage^ ,
int ,
int ,
ImGearRasterPage^
)
Parameters
- page1
- Page to process.
- left
- Left margin of blended image.
- top
- Top margin of blended image.
- page2
- Image to blend with .
Example
See Also