I am writing an iPhone application and need to essentially implement something equivalent to the 'eyedropper' tool in photoshop, where you can touch a point on the image and capture the RGB values for the pixel in question to determine and match its color. Getting the UIImage is the easy part, but is there a way to convert the UIImage data into a bitmap representation in which I could extract this information for a given pixel? A working code sample would be most appreciated, and note that I am not concerned with the alpha value.
|
feedback
|
A little more detail...I posted earlier this evening with a consolidation and small addition to what had been said on this page - that can be found at the bottom of this post. I am editing the post at this point, however, to post what I propose is (at least for my requirements, which include modifying pixel data) a better method, as it provides writable data (whereas, as I understand it, the method provided by previous posts and at the bottom of this post provides a read-only reference to data). Method 1: Writable Pixel Information
Read-Only Data (Previous information) - method 2:Step 1. I declared a type for byte:
Step 2. I declared a struct to correspond to a pixel:
Step 3. I subclassed UIImageView and declared (with corresponding synthesized properties):
Step 4. Subclass code I put in a method named bitmap (to return the bitmap pixel data):
Step 5. I made an accessor method:
| |||||||
feedback
|
|
You can't access the bitmap data of a UIImage directly. You need to get the CGImage representation of the UIImage. Then get the CGImage's data provider, from that a CFData representation of the bitmap. Make sure to release the CFData when done.
You will probably want to look at the bitmap info of the CGImage to get pixel order, image dimensions, etc. | |||
|
feedback
|
|
Lajos's answer worked for me. To get the pixel data as an array of bytes, I did this:
More info: CFDataRef documentation. Also, remember to include | |||
feedback
|
|
For those that couldn't get the above to work (me) there is this useful post: http://www.markj.net/iphone-uiimage-pixel-color/ You can see the whole implementation there. | |||
|
feedback
|
|
To do something similar in my application, I created a small off-screen CGImageContext, and then rendered the UIImage into it. This allowed me a fast way to extract a number of pixels at once. This means that you can set up the target bitmap in a format you find easy to parse, and let CoreGraphics do the hard work of converting between color models or bitmap formats. | |||
|
feedback
|
pixelPosition = (x+(y*((imagewidth)*BytesPerPixel))); // pitch isn't an issue with this device as far as I know and can be let zero... // ( or pulled out of the math ). | |||
|
feedback
|
|
Use ANImageBitmapRep which gives pixel-level access (read/write). | |||
|
feedback
|