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

TransformsProvider.Texturize Method (Int32, Int32)

Create texture from the image by reducing its size and "gluing" it with its copies seamlessly.

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

Syntax

Visual Basic
Public Sub Texturize ( _
	columnsAmount As Integer, _
	rowsAmount As Integer _
)
C#
public void Texturize(
	int columnsAmount,
	int rowsAmount
)

Parameters

columnsAmount

Type: System.Int32

Columns number.
rowsAmount

Type: System.Int32

Rows number.

Remarks

You can also use Texturize class to apply this effect.

Examples

Visual Basic
bitmap.Transforms.Texturize(3, 3)
C#
bitmap.Transforms.Texturize(3, 3);

See Also

Reference