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

Emboss Constructor (Single, Int32, Int32)

Creates and initializes Emboss class instance. You can set main emboss parameters (angle, height, and amount) here.

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

Syntax

Visual Basic
Public Sub New ( _
	angle As Single, _
	height As Integer, _
	amount As Integer _
)
C#
public Emboss(
	float angle,
	int height,
	int amount
)

Parameters

angle

Type: System.Single

Emboss angle (in degrees). You can change this value later using Angle property.
height

Type: System.Int32

Value specifying embossed image height (in pixels). You can change this value later using Height property.
amount

Type: System.Int32

Value specifying emboss amount ("strength" of embossing). It is specified in percents - values below 100 will reduce contrast, values above 100 will increase contrast. You can change this value later using Amount property.

See Also

Reference