Merges two images according to the specified merge mode.
Syntax
'Declaration
Public Overloads Shared Sub Merge( _
ByVal As ImGearRasterPage, _
ByVal As ImGearRasterPage, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As ImGearMergeModes, _
ByVal As ImGearChannelRange _
)
'Usage
Dim page As ImGearRasterPage
Dim pageToMergeWith As ImGearRasterPage
Dim left As Integer
Dim top As Integer
Dim mode As ImGearMergeModes
Dim channels As ImGearChannelRange
ImGearRasterProcessing.Merge(page, pageToMergeWith, left, top, mode, channels)
Parameters
- page
- First image to merge. It will contain resultant image after merging.
- pageToMergeWith
- Second image to merge.
- left
- Left position of the source image on the destination one.
- top
- Top position of the source image on the destination one.
- mode
- Merge mode.
- channels
- Range of channels.
See Also