ImgRemoveBleedThrough |
Top Previous Next |
Prototype
ImgRemoveBleedThrough(intImageHandle, intThreshold)
Description
When paper is written on both sides and is too thin or the ink applied too heavily the color can bleed or seep through to the other side, generating the bleed-through problem. This function allow for the cleaning of color images by removing data and text that is visible present on back side and visible in transparency on the front side.
Parameters
intImageHandle: integer value corresponding to the image handle.
intThreshold: integer value, ranging from 0 to 255, allowing to set removal threshold to fine tune the process
Returned value
None.
Notes
This function can works only on color images.
Example
// Remove bleed-thought on current images using 64 as threshold (low aggressive) ImgRemoveBleedThrough(_CurrentImage, 64); |