我正在将 UILabel 绘制到 UIImage。
UILabel 的宽度为 193.5,而下面代码生成的 UIImage 为 194 宽。
为什么是这样?
UIGraphicsBeginImageContextWithOptions(label.bounds.size, YES, [[UIScreen mainScreen] scale]);
[label.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();