How can I detect a color?

Hi,

I have some pictures that I need to get the background color. I tried to install the only package I found about it but didn’t work.

Is there any way to get the color? Any activity? Anything?

just share with us some more details like
screenshots,
which type of applications (web app, desktop app…)

Thanks

I don’t have any real examples here now to get a screenshot but it would be something like these:

image

I would have an image like these downloaded in my computer and I would have to identify the background color if it’s white or not.

Cross reference:

with the assumption that the background color is dominated by a certain threshold

what about the following idea?

  • select a particular corner from image top left, top right … and / or bottom right
  • take 1 pixel, 2pixel… but not all just minimal set
  • check the color value for the pixels

If such an approach would work you, then we can check e.g. how to realize it with .Net Api options

@ppr
that might work!!

but how can i do it? which activity can I use to select the corner?

So we can map this prototype, done within immediate panel

to 2 Assign Activities

new Bitmap(YourFilePath)
myImage.GetPixel(5,5)
2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.