CGContextTranslateCTM
画布的大小由 UIGraphicsBeginImageContextWithOptions
的参数 size
决定,老是记不住这一点。
UIGraphicsBeginImageContextWithOptions(size, YES, 0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0, size.height);
CGContextScaleCTM(context, 1, -1);