color dropout

Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.

Moderator: Alex

Post Reply
ltdeta
Posts: 9
Joined: Tue Jul 05, 2011 8:57 pm

color dropout

Post by ltdeta »

Does VintaSoftImaging has this function

this means:
The removal of a specific color from a scanned image. Typically used for preprinted forms, so that the form itself does not appear in the scanned image, leaving only the information filled in by the user. This increases OCR effectiveness, and decreases data storage and bandwidth requirements.
Alex
Site Admin
Posts: 2303
Joined: Thu Jul 10, 2008 2:21 pm

Re: color dropout

Post by Alex »

Hello,

You can use the Vintasoft.Imaging.ImageProcessing.Color.ColorBlendCommand if you want to dropout the color from the image.

Here is an example how to dropout red color from the image:

Code: Select all

ColorBlendCommand command = new ColorBlendCommand(BlendingMode.Darken, Color.FromArgb(0, 255, 255));
command.ExecuteInPlace(image);
Best regards, Alexander
ltdeta
Posts: 9
Joined: Tue Jul 05, 2011 8:57 pm

Re: color dropout

Post by ltdeta »

Thank you for the answer.

i use the demo version and do this
Image

but know i would change red with white color

this is the original picture
Image
Post Reply