CGContext Transform

CGContextTranslateCTM 画布的大小由 UIGraphicsBeginImageContextWithOptions 的参数 size 决定,老是记不住这一点。

UIGraphicsBeginImageContextWithOptions(size, YES, 0);

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0, size.height);
CGContextScaleCTM(context, 1, -1);
    原文作者:sugarmo
    原文地址: https://segmentfault.com/a/1190000000643934
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞