Crop a picture to a rounded edge

Source: Internet
Author: User

How do I crop the edges of a picture to a circle?

First, the use of Cornerradius:

Select the image in Ib, and in the identity panel, press the + sign button under User Defined Runtime attributes to add the following key values:

Note that the value of Cornerradius is 20 because the size of the picture is 40,40/2=20.
Then in the Properties panel, tick clip subviews:

The picture in the storyboard doesn't change any more, but you can see the effect when you run the app:

Note that if the length of the ImageView is unequal, a rounded rectangle is obtained:


Second, the use of Cashapelayer

Draw an oval Calayer first, if the aspect ratio of the circle is 1 is the positive circle, otherwise is the ellipse:
Let group = CGRectMake (0,0,40,40)
Masklayer=cashapelayer ()
Let Maskpath = Uibezierpath (Ovalinrect:group)
Masklayer.fillcolor=uicolor.whitecolor (). Cgcolor
Masklayer.path = Maskpath.cgpath

Then apply this calayer as a mask to the ImageView:
ImageView.layer.mask = Masklayer

The results are similar to the above. The difference is that if the group has a wide range of lengths, it is possible to get an oval clipping effect instead of the rounded rectangle above.

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Crop a picture to a rounded edge

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.