Transforms given bitmap data "in-place" using specified mask.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Overridable Sub ApplyMaskTransform ( _ bitmapData As BitmapData, _ mask As Bitmap _ )
public virtual void ApplyMaskTransform( BitmapData bitmapData, Bitmap mask )
Type: Aurigma.GraphicsMill.BitmapData
BitmapData which should be transformed. Result of the transform will be saved to the same bitmap data (in other word, transform is applied "in-place").Type: Aurigma.GraphicsMill.Bitmap
Bitmap which defines mask. Mask should be 8-bit grayscale bitmap (its pixel format is Format8bppGrayScale) of the same dimensions as original image.