ImageGear .NET v25.2 - Updated
ImageGear.Processing.Advanced Assembly / ImageGear.Processing Namespace / ImGearEffects Class / Sketch Method
Page to process.
Page to use as a texture.
Scaling factor for resizing the texture image.




In This Topic
    Sketch Method
    In This Topic
    Applies a sketch effect on the image.
    Syntax
    'Declaration
     
    Public Shared Sub Sketch( _
       ByVal page As ImGearRasterPage, _
       ByVal texture As ImGearRasterPage, _
       ByVal scaling As Double _
    ) 
    'Usage
     
    Dim page As ImGearRasterPage
    Dim texture As ImGearRasterPage
    Dim scaling As Double
     
    ImGearEffects.Sketch(page, texture, scaling)
    public static void Sketch( 
       ImGearRasterPage page,
       ImGearRasterPage texture,
       double scaling
    )
    public: static void Sketch( 
       ImGearRasterPage* page,
       ImGearRasterPage* texture,
       double scaling
    ) 
    public:
    static void Sketch( 
       ImGearRasterPage^ page,
       ImGearRasterPage^ texture,
       double scaling
    ) 

    Parameters

    page
    Page to process.
    texture
    Page to use as a texture.
    scaling
    Scaling factor for resizing the texture image.
    Remarks
    This method applies Sketch effect on the image. It blends the source image with a texture image, making it look like painted by a pencil or charcoal.

    The texture image can be scaled to imitate finer or thicker pencil strokes. If source image is larger than the texture, the texture is tiled over the image.

    See Also