簡體   English   中英

如何在imageview ios7中獲取圓形圖像

[英]How to get circular image in an imageview ios7

如何從UIImage獲取圓形圖像並將其顯示在圖像視圖上。圖像應該類似於IOS7中顯示的圖像調用歷史記錄

- (UIImage *)getRoundedRectImageFromImage :(UIImage *)image onReferenceView :  
(UIImageView*)imageView withCornerRadius :(float)cornerRadius
{
UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 1.0);
[[UIBezierPath bezierPathWithRoundedRect:imageView.bounds
                            cornerRadius:cornerRadius] addClip];
[image drawInRect:imageView.bounds];
UIImage *finalImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

return finalImage;
}                                                                                                     And call the method like this

imageView.image = [self getRoundedRectImageFromImage:image
                                         onReferenceView:
imageView withCornerRadius:imageView.frame.size.width/2];
imageView.clipsToBounds=YES;
imageView.layer.masksToBounds = YES;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM