How to mask a square image into an image with round corners?
|
You can use CoreGraphics to create a path for a round rectangle with this code snippet:
And then call CGContextClip(context); to clip it to the rectangle path. Now any drawing done, including drawing an image, will be clipped to the round rectangle shape. As an example, assuming "image" is a UIImage, and this is in a drawRect: method:
|
|||||||||||||||
|
|
Here is an even easier method that is available in iPhone 3.0 and up. Every View-based object has an associated layer. Each layer can have a corner radius set, this will give you just what you want:
To use these methods you might need to add:
|
|||||||||||||||||
|
|
I realize this is old news but just to boil it down a bit: There are two possible questions here: (1) how do I apply rounded corners to a UIView (such as a UIImageView), which will be displayed on screen, and (2) how do I mask a square image (that is, a UIImage) to produce a new image with rounded corners. For (1), the easiest course is to use CoreAnimation and set the view.layer.cornerRadius property
For (2), the best way is to use the UIKit graphics operations:
What's tricky about problem (2) is that you might think you could do the whole operation using the view.layer.mask property in CoreAnimation. But you can't because the CALayer Some further context: the above approach to (2) is using UIKit's wrappers are around more basic CoreGraphics functionality. You can do the same thing using the CoreGraphics calls directly – that is what the chosen answer is doing -- but then you need build the rounded rect bezier path manually from curves and lines and you also need to compensate for the fact that CoreGraphics uses a drawing coordinate system which is flipped with respect to UIKit's. |
|||||
|
|
See this Post - Very simple answer How to set round corners in UI images in iphone
|
|||
|
|
|
Create an image with opaque rounded corners and a transparent middle region in your image editor. Then overlay that image on top of your image. The image underneath will show through the transparent region in the center of your rounded corners image making anything appear "rounded" |
|||
|
|
|
Both the methods work but the differences shows up depending on where you use it. For Ex: If you have a table view with the cells showing an image along with other labels, etc., and you use layer to set the cornerRadius, the scrolling will take a big hit. It gets jerky. I faced this issue when I was using Layer for an image in a table view cell and was trying to figure out the cause of that jerkiness only to find that CALayer was the culprit. Used the first solution of doing the stuff in drawRect explained by NilObject. That works like a charm with scrolling being smooth as silk. On the other hand, if you want to use this in static views like popover view, etc., layer is the easiest way to do it. As I said, both the methods work well just that you need to decide based on where you want to use it. |
|||
|
|
|
I use this method.
|
||||
|