ImageGear for .NET
Sharpen(ImGearRasterPage,Int32,ImGearChannelRange) Method
See Also  Example Send Feedback
ImageGear21.Core Assembly > ImageGear.Processing Namespace > ImGearRasterProcessing Class > Sharpen Method : Sharpen(ImGearRasterPage,Int32,ImGearChannelRange) Method




page
Image to sharpen.
factor
Sharpen factor. Allowed values are from 1 to 7 inclusive. For any factor beyond this range the method will do nothing. The larger this factor, the sharper image will become.
channels
Channel range to sharpen.

Glossary Item Box

Sharpens an image according to the specified sharpen factor.

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Parameters

page
Image to sharpen.
factor
Sharpen factor. Allowed values are from 1 to 7 inclusive. For any factor beyond this range the method will do nothing. The larger this factor, the sharper image will become.
channels
Channel range to sharpen.

Remarks

This method processes a specified range of channels.

Can be applied only to raster pages with standard (non Run-Ends) DIB.

Example

C#Copy Code
// Sharpen the first channel of an image by a factor of 3.
ImGearRasterProcessing.Sharpen(igRasterPage, 3, new ImGearChannelRange(0, 1));
Visual BasicCopy Code
' Sharpen the first channel of an image by a factor of 3.
ImGearRasterProcessing.Sharpen(igRasterPage, 3, New ImGearChannelRange(0, 1))

See Also

©2013. Accusoft Corporation. All Rights Reserved.