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.
color dropout
Moderator: Alex
-
- Site Admin
- Posts: 2397
- Joined: Thu Jul 10, 2008 2:21 pm
Re: color dropout
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:
Best regards, Alexander
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);
-
- Posts: 9
- Joined: Tue Jul 05, 2011 8:57 pm