Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Imaging Namespace / GaussianBlurBorderMode Enumeration

In This Topic
    GaussianBlurBorderMode Enumeration
    In This Topic
    The mapping mode for the pixels outside of the border in the Gaussian blur effect.
    Syntax
    'Declaration
     
    Public Enum GaussianBlurBorderMode 
       Inherits System.Enum
    public enum GaussianBlurBorderMode : System.Enum 
    Members
    MemberDescription
    BorderColorAlways blend the border pixels with GaussianBlurEffect.BorderColor.
    BounceBounce off the border: gfedcb|abcdefgh|gfedcb.

    This mode is similar to Mirror, but here the very border pixel is not repeated.

    DefaultBlend the border pixels with surrounding pixels, if possible, or with GaussianBlurEffect.BorderColor if the border is at the edge of the source image.
    MirrorMirror the last few border pixels: fedcba|abcdefgh|hgfedcb.

    This mode is similar to Bounce, but here the very border pixel is repeated.

    RepeatEdgeRepeat the very border pixel color: aaaaaa|abcdefgh|hhhhhh.
    WrapTake colors from the opposite edge: cdefgh|abcdefgh|abcdef.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Imaging.GaussianBlurBorderMode

    See Also