This documentation is for the old version. Go to the latest Graphics Mill docs

TransformsProvider.Mosaic Method (Int32, Int32)

Applies mosaic effect.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub Mosaic ( _
	cellWidth As Integer, _
	cellHeight As Integer _
)
C#
public void Mosaic(
	int cellWidth,
	int cellHeight
)

Parameters

cellWidth

Type: System.Int32

Mosaic cell width.
cellHeight

Type: System.Int32

Mosaic cell height.

Remarks

You can also use Mosaic class to apply this effect.

Examples

Visual Basic
bitmap.Transforms.Mosaic(10, 10)
C#
bitmap.Transforms.Mosaic(10, 10);

See Also

Reference