This method adds a new “replace white pixels” region to the internal array of “replace white pixels” regions of the ImageModification object. To remove all the “replace white pixels” regions previously added call the IImageModification::ClearReplaceWhitePixelsRegions method. If the modification must be applied to a single color (or gray) plane of the image, coordinates of the region should be specified on this color (gray) plane. If the modification must be applied to the whole ImageModification, the coordinates should be specified on the deskewed black-and-white image plane.Documentation Index
Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
Use this file to discover all available pages before exploring further.
Syntax
C++
C#
Visual Basic .NET
Parameters
Region [in] This parameter of the Region type specifies the “replace white pixels” region to be added. Color [in] This variable specifies the color with which the white pixels are replaced. The value of this parameter can be -1, which means that the color is transparent.The int value is calculated from the RGB triplet using the formula: ( red value ) + (256 x green value ) + (65536 x blue value ), where red value is the first triplet component, green value is the second triplet component, blue value is the third triplet component. For example, the int value of the color white equals 16777215.
