Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6170809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:06:18+00:00 2026-05-23T23:06:18+00:00

I haven’t been able to find one single example on the internets that teaches

  • 0

I haven’t been able to find one single example on the internets that teaches me how to create a circle on the fly and then use this circle to clip an UIImage.

Here’s my code, unfortunately it doesn’t give me desired results.

//create a graphics context
UIGraphicsBeginImageContext(CGSizeMake(243, 243));
CGContextRef context = UIGraphicsGetCurrentContext();

//create my object in this context
CGContextAddEllipseInRect(context, CGRectMake(0, 0, 243, 243));
CGContextSetFillColor(context, CGColorGetComponents([[UIColor whiteColor] CGColor]));
CGContextFillPath(context);

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
//create an uiimage from the ellipse


//Get the drawing image
CGImageRef maskImage = [image CGImage];

// Get the mask from the image
CGImageRef maskRef = CGImageMaskCreate(CGImageGetWidth(maskImage)
                                    , CGImageGetHeight(maskImage)
                                    , CGImageGetBitsPerComponent(maskImage)
                                    , CGImageGetBitsPerPixel(maskImage)
                                    , CGImageGetBytesPerRow(maskImage)
                                    ,  CGImageGetDataProvider(maskImage)
                                    , NULL
                                    , false);


//finally clip the context to the mask.

CGContextClipToMask( context , CGRectMake(0, 0, 243, 243) , maskRef );


//draw the image
[firstPieceView.image drawInRect:CGRectMake(0, 0, 320, 480)];
// [firstPieceView drawRect:CGRectMake(0, 0, 320, 480)];

//extract a new image
UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();

NSLog(@"self.firstPieceView is %@", NSStringFromCGRect(self.firstPieceView.frame));
UIGraphicsEndImageContext();


self.firstPieceView.image = outputImage;

I would appreciate any directions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T23:06:19+00:00Added an answer on May 23, 2026 at 11:06 pm

    I suspect you need to rephrase your question better.
    There’s plenty of example code for whatever you’re trying to do out there.

    Here’s how you could implement a custom UIView subclass to clip am image to an ellipse:

    - (void)drawInRect:(CGRect)rect {
      UIImage image;// set/get from somewhere
      CGImageRef imageRef = [image CGImageRef];
      CGContextRef context = UIGraphicsGetCurrentContext();
      CGContextAddEllipseInRect(context, self.bounds);
      CGContextClip(context);
      CGContextDrawImage(context, self.bounds, imageRef);
    }
    

    caveat emptor


    Edit (a day later, free time produces):

    - (void)drawRect:(CGRect)rect {
      // we're ignoring rect and drawing the whole view
      CGImageRef imageRef = [_image CGImage]; // ivar: UIImage *_image;
      CGContextRef context = UIGraphicsGetCurrentContext();
    
      // set the background to black
      [[UIColor blackColor] setFill];
      CGContextFillRect(context, self.bounds);
    
    
      // modify the context coordinates,
      // UIKit and CoreGraphics are oriented differently
      CGContextSaveGState(context);
        CGContextTranslateCTM(context, 0, CGRectGetHeight(rect));
        CGContextScaleCTM(context, 1, -1);
    
        // add clipping path to the context, then execute the clip
        // this is in effect for all drawing until GState restored
        CGContextAddEllipseInRect(context, self.bounds);
        CGContextClip(context);
    
        // stretch the image to be the size of the view
        CGContextDrawImage(context, self.bounds, imageRef);
      CGContextRestoreGState(context);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I haven't been able to find anything online regarding this. There's RegexOptions, but it
I haven't been able to find what these Xcode icons mean. Some you can
I haven't been able to find authorative explanations, microformats or guidelines for the following,
I haven't been able to find much about this but am I the only
I haven't be able to find a resource explaining if this is possible at
Haven't seen anything, but I have seen that you can create albums in the
I haven't been able to solve this prolog exercise. I was hoping someone here
I haven't studied design patterns, but I'm willing to bet that there is one
I haven't been able to do so due to all sort of missing dependencies
I'm trying to create an if statement in PHP that prevents a single post

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.