iPhone Objective C: How to get a pixel's color

2019-01-12 03:52发布

问题:

iPhone Objective C: How to get a pixel's color of the touched point on an UIImageView, even if the parent UIView or itself is being rotated by the CGAffineTransformMakeRotation function?

Will the view property of the UITouch still correctly return the correct pixel of the touched point even if the UIView/UIImageView is being scaled and rotated?

Many thanks for reading

edited: Thanks for the answer & comments, but sorry I still don't know how to get the X,Y point of the scaled/rotated image from the touch event, and then extract the color from it. Would anyone mind to help?

回答1:

A quick google search has revealed some promising leads:

  • Getting Pixel data from a CGImage object
  • Another StackOverflow question
  • What color is my pixel?