Packages

 

com.aspose.imaging.fileformats.emf.emfplus.objects

Classes

com.aspose.imaging.fileformats.emf.emfplus.objects

Class EmfPlusBlurEffect

  • All Implemented Interfaces:
    Cloneable


    public final class EmfPlusBlurEffect
    extends EmfPlusImageEffectsObjectType

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

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      float getBlurRadius()
      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.
      boolean getExpandEdge()
      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.
      void setBlurRadius(float value)
      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.
      void setExpandEdge(boolean value)
      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.
    • Constructor Detail

      • EmfPlusBlurEffect

        public EmfPlusBlurEffect()
    • Method Detail

      • getBlurRadius

        public float getBlurRadius()

        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.

      • setBlurRadius

        public void setBlurRadius(float value)

        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.

      • getExpandEdge

        public boolean getExpandEdge()

        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.

      • setExpandEdge

        public void setExpandEdge(boolean value)

        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.