vote up 1 vote down star
3

Hi,

I'm trying to write an animation on the iPhone, without much success, getting crashes and nothing seems to work.

What I wanna do appears simple, create a UIImage, and draw part of another UIImage into it, I got a bit confused with the context and layers and stuff.

Could someone please explain how to write something like that (efficiently), with example code?

flag
Do you actually want a new UIImage (that you could save to disk or send over the network for example) or do you just want to layer two UIImages on the screen, one atop the other? – rpetrich Mar 24 at 21:28
I would suggest getting a good introductory book. I'm currently reading this one: iphonedevbook.com it has chapters on drawing and animation etc.. – bentford Mar 25 at 5:05
I want an actual UIImage, so i can use it in an animation. I read some documentations, but they all show how to draw boxes and lines, not an actual picture which is more complex. – Gonen Mar 25 at 8:26

1 Answer

vote up 5 vote down

For the record, this turns out to be fairly straightforward - everything you need to know is somewhere in the example below:

+ (UIImage*) addStarToThumb:(UIImage*)thumb
{
   CGSize size = CGSizeMake(50, 50);
   UIGraphicsBeginImageContext(size);

   CGPoint thumbPoint = CGPointMake(0, 25 - thumb.size.height / 2);
   [thumb drawAtPoint:thumbPoint];

   static UIImage* starred = nil;
   if (starred == nil) {
       starred = [UIImage imageNamed:@"starred.png"];
   }

   CGPoint starredPoint = CGPointMake(0, 0);
   [starred drawAtPoint:starredPoint];

   UIImage* result = UIGraphicsGetImageFromCurrentImageContext();
   UIGraphicsEndImageContext();

   return result;
}
link|flag

Your Answer

Get an OpenID
or

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