Skip to content

Instantly share code, notes, and snippets.

@mamaz
Created September 11, 2014 10:06
Show Gist options
  • Save mamaz/70901e6aaecd09d268fb to your computer and use it in GitHub Desktop.
Save mamaz/70901e6aaecd09d268fb to your computer and use it in GitHub Desktop.
Draw Circle Image by Clipping
// draw circler image
-(void)drawClippedAvatar:(UIImage *)image inRect:(CGRect)rect andContext:(CGContextRef)context
{
CGMutablePathRef path = CGPathCreateMutable();
CGPathAddEllipseInRect(path, NULL, rect);
CGContextAddPath(context, path);
CGContextClip(context);
CGPathRelease(path);
[image drawInRect:rect];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment