Search found 1 match

by jchan
2016-10-06T15:34:45-07:00
Forum: Users
Topic: Detect non-white pixels in image
Replies: 2
Views: 1662

Detect non-white pixels in image

Given an image, I want to detect whether it has any non-white pixels (basically anything that's not #FFFFFF). Any transparent pixels should also be ignored.

Is there a way to do this, maybe somehow parsing the data given from the code below?

Code: Select all

convert sample.png -format %c histogram:info:-
Thanks!