美文网首页
记录一下绘图里面的一些方法

记录一下绘图里面的一些方法

作者: 跬步千里_LenSky | 来源:发表于2018-04-13 17:43 被阅读7次
    UIGraphicsBeginImageContextWithOptions(self.size, NO, self.scale);
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    CGContextAddEllipseInRect(context, CGRectZero);
    //设置透明色
    CGContextSetBlendMode(context, kCGBlendModeClear);
    CGContextDrawPath(context, kCGPathFill);
    UIImage*anewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    UIBezierPath *path;
    CGContextAddPath(context, path.CGPath);

相关文章

网友评论

      本文标题:记录一下绘图里面的一些方法

      本文链接:https://www.haomeiwen.com/subject/arkhkftx.html