Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given an UIImage and a CGRect, what is the most efficient way (in memory and time) to draw the part of the image corresponding to the CGRect (without scaling)?

For reference, this is how I currently do it:

- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGRect frameRect = CGRectMake(frameOrigin.x + rect.origin.x, frameOrigin.y + rect.origin.y, rect.size.width, rect.size.height);    
    CGImageRef imageRef = CGImageCreateWithImageInRect(image_.CGImage, frameRect);
    CGContextTranslateCTM(context, 0, rect.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);
    CGContextDrawImage(context, rect, imageRef);
    CGImageRelease(imageRef);
}

Unfortunately this seems extremely slow with medium-sized images and a high setNeedsDisplay frequency. Playing with UIImageView's frame and clipToBounds produces better results (with less flexibility).

share|improve this question
I think you should avoid to render the image constantly by UIKit/CoreGraphics. If you really need to do that, try to use OpenGL tech instead, it's far more efficient. – mr.pppoe Nov 23 '11 at 9:12
@mr.pppoe Can you provide a code sample? – hpique Nov 23 '11 at 9:19
Well, it can be not a little trouble to involve OpenGL to your current project. You can take a look at this one first: github.com/pppoe/GLRenderLargeImage, if you really want a sample, please let us know your situation more specifically. I can put on an answer then. :) – mr.pppoe Nov 24 '11 at 15:18

3 Answers

up vote 30 down vote accepted
+50

I guessed you are doing this to display part of an image on the screen. Because you mentioned UIImageView. And optimization problem always need defining the problem specifically.


Trust Apple for Regular UI stuffs

Actually, UIImageView with clipsToBounds is one of the fastest/simplest way to archive your goal if your goal is just clipping a rectangular region of an image. (not too big) And also, you don't need to send setNeedsDisplay message.

Or you can try putting the UIImageView inside of an empty UIView and set clipping at the container view. With this technique, you can transform your image freely by setting transform property in 2D. (in all of scaling, rotation, translation)

If you need 3D transformation, you still can use CALayer with masksToBounds property. But using CALayer will give you very little extra performance usually not considerable.

Anyway, you should know all of the low-level details to use them properly for optimization.


Why is that one of the fastest way?

UIViews are implemented with CALayer which implemented on top of OpenGL which is direct interface to GPU. This mean whole UIKit is being accelerated by GPU.

And actually UIView is just a thin layer on top of CALayer, and CALayer is just an objective/hierarchical controller interface to the OpenGL. So if you use them properly (I mean, within designed limitations), it will perform as well as plain OpenGL implementation. If you use just a few images to display, you'll get acceptable performance with UIView implementation because it can get full acceleration of underlying OpenGL (which means GPU acceleration)

Anyway if you need extreme optimization for hundreds of animated sprites with finely tuned pixel shaders like a game app, you should use OpenGL directly. Because CALayer lacks many options for optimization at lower level. Anyway, at least for optimization of UI stuff, it's incredibly hard to be better than Apple. Apple is doing this over decades.


Why your method is slower than UIImageView?

What you should know is all about GPU acceleration. In all of the recent computers, fast graphics performance is being able to be archived only with GPU. So the point is whether the method you're using is implemented on top of GPU or not.

IMO, CGImage drawing methods are not implemented with GPU. I think I read mentioning about this on Apple's documentation but I can't remember where. So I'm not sure about this. Anyway that's true the drawing is slower now. If the drawing is implemented with GPU it shouldn't be slow. So it seems to be done in CPU, and any of graphics operations done in CPU is a lot slower than GPU. So you should avoid this.

And just clipping image and compositing that image layers are very simple and easy operation for GPU. So you can expect the UIKit library will utilize this because whole UIKit is implemented on top of OpenGL.


About Limitations

Because optimization is a kind of work about micro-management, specific numbers and small facts are very important. What's the medium size? OpenGL on iOS usually limits maximum texture size as 1024x1024 pixels. If your image is larger than this, it will not work or performance will be degraded greatly. (I think UIImageView is optimized for images within the limits.)

If you need to display huge images with clipping, you have to go another optimization like CATiledLayer and that's totally different story.

And don't go OpenGL unless you want to know every details of the OpenGL. It needs full understanding about low-level graphics and 100 times more codes at least.

share|improve this answer
Excellent answer. – jshier Nov 26 '11 at 3:14

It would ultimately be faster, with a lot less image creation from sprite atlases, if you could set not only the image for a UIImageView, but also the top-left offset to display within that UIImage. Maybe this is possible.

Meanwhile, I created these useful functions in a utility class that I use in my apps. It creates a UIImage from part of another UIImage, with options to rotate, scale, and flip using standard UIImageOrientation values to specify.

My app creates a lot of UIImages during initialization, and this necessarily takes time. But some images aren't needed until a certain tab is selected. To give the appearance of quicker load I could create them in a separate thread spawned at startup, then just wait till it's done if that tab is selected.

+ (UIImage*)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)aperture {
    return [ChordCalcController imageByCropping:imageToCrop toRect:aperture withOrientation:UIImageOrientationUp];
}

// Draw a full image into a crop-sized area and offset to produce a cropped, rotated image
+ (UIImage*)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)aperture withOrientation:(UIImageOrientation)orientation {

            // convert y coordinate to origin bottom-left
    CGFloat orgY = aperture.origin.y + aperture.size.height - imageToCrop.size.height,
            orgX = -aperture.origin.x,
            scaleX = 1.0,
            scaleY = 1.0,
            rot = 0.0;
    CGSize size;

    switch (orientation) {
        case UIImageOrientationRight:
        case UIImageOrientationRightMirrored:
        case UIImageOrientationLeft:
        case UIImageOrientationLeftMirrored:
            size = CGSizeMake(aperture.size.height, aperture.size.width);
            break;
        case UIImageOrientationDown:
        case UIImageOrientationDownMirrored:
        case UIImageOrientationUp:
        case UIImageOrientationUpMirrored:
            size = aperture.size;
            break;
        default:
            assert(NO);
            return nil;
    }


    switch (orientation) {
        case UIImageOrientationRight:
            rot = 1.0 * M_PI / 2.0;
            orgY -= aperture.size.height;
            break;
        case UIImageOrientationRightMirrored:
            rot = 1.0 * M_PI / 2.0;
            scaleY = -1.0;
            break;
        case UIImageOrientationDown:
            scaleX = scaleY = -1.0;
            orgX -= aperture.size.width;
            orgY -= aperture.size.height;
            break;
        case UIImageOrientationDownMirrored:
            orgY -= aperture.size.height;
            scaleY = -1.0;
            break;
        case UIImageOrientationLeft:
            rot = 3.0 * M_PI / 2.0;
            orgX -= aperture.size.height;
            break;
        case UIImageOrientationLeftMirrored:
            rot = 3.0 * M_PI / 2.0;
            orgY -= aperture.size.height;
            orgX -= aperture.size.width;
            scaleY = -1.0;
            break;
        case UIImageOrientationUp:
            break;
        case UIImageOrientationUpMirrored:
            orgX -= aperture.size.width;
            scaleX = -1.0;
            break;
    }

    // set the draw rect to pan the image to the right spot
    CGRect drawRect = CGRectMake(orgX, orgY, imageToCrop.size.width, imageToCrop.size.height);

    // create a context for the new image
    UIGraphicsBeginImageContextWithOptions(size, NO, imageToCrop.scale);
    CGContextRef gc = UIGraphicsGetCurrentContext();

    // apply rotation and scaling
    CGContextRotateCTM(gc, rot);
    CGContextScaleCTM(gc, scaleX, scaleY);

    // draw the image to our clipped context using the offset rect
    CGContextDrawImage(gc, drawRect, imageToCrop.CGImage);

    // pull the image from our cropped context
    UIImage *cropped = UIGraphicsGetImageFromCurrentImageContext();

    // pop the context to get back to the default
    UIGraphicsEndImageContext();

    // Note: this is autoreleased
    return cropped;
}
share|improve this answer

Rather than creating a new image (which is costly because it allocates memory), how about using CGContextClipToRect?

share|improve this answer
Don't have much experience with Quartz. Can you provide a code snippet? – hpique Nov 8 '11 at 10:22
I tried and the performance didn't change significantly. It was something like this: CGContextRef context = UIGraphicsGetCurrentContext(); CGRect frameRect = CGRectMake(0, 0, rect.size.width, rect.size.height); CGContextClipToRect(context, frameRect); CGRect imageRect = CGRectMake(frameOrigin.x + rect.origin.x, frameOrigin.y + rect.origin.y, rect.size.width, rect.size.height); CGContextDrawImage(context, imageRect, image_.CGImage); – hpique Nov 22 '11 at 21:38
I guess drawing time swamps memory management then (what's your definition of a medium-size image?) I'd still avoid the creation (and disposal) of a new CGImageRef though, you don't need it and you say speed is critical. And I don't really see how clipping is less flexible. (Oh, clipping at the UIView level. Sure, that's high level.) – David Dunham Nov 22 '11 at 22:32

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.