像这样的原始图像效果:
并使用下面的代码来剪辑:
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剪切带图像的圆圈所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)