show/hide this revision's text 8 Corrected syntax error in one of the examples

NSString* imageName = "MyImage.png";
show/hide this revision's text 7 just changed one of the 'method 1's' to 'method 2'

Method 12: Using CoreGraphics

show/hide this revision's text 6 fixed a factual error about getting/modifying the pixels of the UIImage

How Do Can I Modify Look At The Underlying Pixels of the UIImage?

The

Since the UIImage is immutable, meaning you can't change itlook at the direct pixels. However, you can get make a copyof the pixels in order to modify them. One method is the followingThe code to this looks something like this:

And

However, note that CGDataProviderCopyData provides you with an "immutable" reference to the data - meaning you can't change it (and you may get a BAD_ACCESS error if you wanted do). Look at the next question if you want to create see how you can modify the pixels.

How Do I Modify The Pixels of the UIImage?

The UIImage is immutable, meaning you can't change it. Apple posted a new image using these great article on how to get a copy of the pixels and modify them, and rather than copy and paste it here, you should just go read the article.

Once you have the bitmap context as they mention in the article, you can do something similar to this to get a new UIImage with the modified pixels:

NSData* newPixelData 

CGImageRef ref = [NSData dataWithBytes:pixelBytes length:[pixelData length]]CGBitmapContextCreateImage(bitmap);UIImage* newImage = [UIImage imageWithData:newPixelData]imageWithCGImage:ref];// Huzzah

There are other ways

Do remember to release your references though, and Apple wrote otherwise you're going to be leaking quite a very nice article that goes over the various methods. You can find it herebit of memory.

show/hide this revision's text 5 They're called "methods" not "functions"
show/hide this revision's text 4 fixed code sample
show/hide this revision's text 3 Unifying on core-graphics tag.
show/hide this revision's text 2 Improved formatting of unformatted code
    Post Made Community Wiki by Itay
show/hide this revision's text 1