ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.Processing Namespace / ImGearEffects Class / GlowingEdges Method
Page to process.
Specifies intensity for the glowing edges. Useful range is 1...10.
Removes dark pixels from result image, leaving only bright edges. Valid range is 0..255.
Adjusts saturation of the result image. Useful range is 0.1...2.0; Set saturation to 1.0 to leave saturation unchanged.




In This Topic
    GlowingEdges Method
    In This Topic
    Applies 'glowing edges' effect to the image.
    Syntax
    'Declaration
     
    Public Shared Sub GlowingEdges( _
       ByVal page As ImGearRasterPage, _
       ByVal intensity As Integer, _
       ByVal sharpness As Integer, _
       ByVal saturation As Double _
    ) 
    'Usage
     
    Dim page As ImGearRasterPage
    Dim intensity As Integer
    Dim sharpness As Integer
    Dim saturation As Double
     
    ImGearEffects.GlowingEdges(page, intensity, sharpness, saturation)
    public static void GlowingEdges( 
       ImGearRasterPage page,
       int intensity,
       int sharpness,
       double saturation
    )
    public: static void GlowingEdges( 
       ImGearRasterPage* page,
       int intensity,
       int sharpness,
       double saturation
    ) 
    public:
    static void GlowingEdges( 
       ImGearRasterPage^ page,
       int intensity,
       int sharpness,
       double saturation
    ) 

    Parameters

    page
    Page to process.
    intensity
    Specifies intensity for the glowing edges. Useful range is 1...10.
    sharpness
    Removes dark pixels from result image, leaving only bright edges. Valid range is 0..255.
    saturation
    Adjusts saturation of the result image. Useful range is 0.1...2.0; Set saturation to 1.0 to leave saturation unchanged.
    Remarks
    This method applies a Glowing Edges effect on the image. It highlights edges on the image with bright colors, and fills flat areas with black.
    See Also