EmfPlusBlurEffect

EmfPlusBlurEffect class

The BlurEffect object specifies a decrease in the difference in intensity between pixels in an image.

public sealed class EmfPlusBlurEffect : EmfPlusImageEffectsObjectType

Constructors

NameDescription
EmfPlusBlurEffect()The default constructor.

Properties

NameDescription
BlurRadius { get; set; }Gets or sets a 32-bit floating-point number that specifies the blur radius in pixels, which determines the number of pixels involved in calculating the new value of a given pixel. This value MUST be in the range 0.0 through 255.0.
ExpandEdge { get; set; }Gets or sets a 32-bit Boolean value that specifies whether the bitmap expands by an amount equal to the value of the BlurRadius to produce soft edges. This value MUST be one of the following: FALSE 0x00000000 The size of the bitmap MUST NOT change, and its soft edges SHOULD be clipped to the size of the BlurRadius. TRUE 0x00000001 The size of the bitmap SHOULD expand by an amount equal to the BlurRadius to produce soft edges.

See Also