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.
This method processes a specified range of channels.
Can be applied only to raster pages with standard (non Run-Ends) DIB.
C# | Copy Code |
---|---|
// Sharpen the first channel of an image by a factor of 3. ImGearRasterProcessing.Sharpen(igRasterPage, 3, new ImGearChannelRange(0, 1)); |
Visual Basic | Copy Code |
---|---|
' Sharpen the first channel of an image by a factor of 3. ImGearRasterProcessing.Sharpen(igRasterPage, 3, New ImGearChannelRange(0, 1)) |