After successfully using UIView
’s new drawViewHierarchyInRect:afterScreenUpdates:
method introduced in iOS 7 to obtain an image representation (via UIGraphicsGetImageFromCurrentImageContext()
) for blurring my app also needed to obtain just a portion of a view. I managed to get it in the following manner:
UIImage *image;
CGSize blurredImageSize = [_blurImageView frame].size;
UIGraphicsBeginImageContextWithOptions(blurredImageSize, YES, .0f);
[aView drawViewHierarchyInRect: [aView bounds] afterScreenUpdates: YES];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
This lets me retrieve aView
’s content following _blurImageView
’s frame.
Now, however, I would need to obtain a portion of aView
, but this time this portion would be “inside”. Below is an image representing what I would like to achieve.
I have already tried creating a new graphics context and setting its size to the portion’s size (red box) and calling aView
to draw in the rect that represents the red box’s frame (of course its superview’s frame being equal to aView
’s) but the image obtained is all black (empty).
After a lot of tweaking I managed to find something that did the job, however I heavily doubt this is the way to go.
Here’s my [edited-for-Stack Overflow] code that works:
I hope this will help anyone that stumped upon my issue. Feel free to improve my snippet.
Thanks