How can detect if a picture contains a specific RGB integer color (NOT regular RGB value) in vb.net? I found this code online that lets you detect if a specific color is present in a picture using a regular RGB value, and it works fine.
ColorInBitmap("c:\test.jpg", Color.FromArgb(109, 109, 109))
I want to not have to use a standard RGB value but instead use a RGB integer (like 111041888 for blue) without having to use standard rgb values.
I want to use this code in determining if a picture contains a range of colors (like from 177 to 18687 [dark red to orange]. Is there any way I can do this?