HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 使用CGContextClip剪切带图像的圆圈大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中有一个imageViewA(框架{0,320,200}),我想用imageViewA的中心剪切一个圆,半径= 50,并绘制到另一个imageViewB(框架{0,100,100});
像这样的原始图像效果

并使用下面的代码来剪辑:

UIGraphicsBeginImageContext(self.frame.sizE);
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGFloat height = self.bounds.size.height;
CGContextTranslateCTM(ctx,0.0,height);
CGContextScaleCTM(ctx,1.0,-1.0);
CGContextAddArc(ctx,self.frame.size.width/2,self.frame.size.height/2,50,2*M_PI,0);
CGContextClosePath(ctX);
CGContextSaveGState(ctX);
CGContextClip(ctX);
CGContextDrawImage(ctx,CGRectMake(0,self.frame.size.width,self.frame.size.height),image.CGImagE);
CGContextRestoreGState(ctX);
CGImageRef imageRef = CGBitmapContextCreateImage (ctX);
UIImage *newImage = [UIImage imageWithCGImage:imageRef];
NSString *headerPath = [NSString StringWithFormat:@"%@/header.png",HomeDirectory];
NSData *imageData = UIImageJPEGRepresentation(newImage,1.0);
if([imageData writeToFile:headerPath atomically:YES]){
    imageViewB.image = [UIImage imageWithContentsOfFile:headerPath];
}

剪辑图像效果如下:

我只需要圆形视图,但剪辑效果显示imageViewB有空白区域.
如何正确剪辑此图片
谢谢!

解决方法

imageViewB.layer.cornerRadius = 50.0;
imageViewB.layer.masksToBounds = YES;

大佬总结

以上是大佬教程为你收集整理的ios – 使用CGContextClip剪切带图像的圆圈全部内容,希望文章能够帮你解决ios – 使用CGContextClip剪切带图像的圆圈所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。