Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering if there is any way in xcode to look at an image and, based on a CGPoint (a coordinate on the screen) find a specific pixel and figure out its color.

For example, look at the bottom of this image. Look at the colored square that the ^ is pointing at.

enter image description here
______^

Let's say that each individual colored square is a CGPoint, the one being pointed at is at ccp(30,30); What color of blue is on that CGPoint?

Is there any way to scan this and do something like possibly a function that checks a CGPoint and returns a number that represents a certain color?

share|improve this question
The answer here may help - stackoverflow.com/questions/4395420/… – izuriel Nov 30 '11 at 16:58

1 Answer

up vote 3 down vote accepted

You can see here how to get pixel color in a CGPoint. You'll get an UIColor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.