是否可以使用UIGraphicsBeginImageContext在CGImage的图像上下文区域中绘制CGImage?
示例:我有图像上下文100x100,我想在坐标(x:4,y:0)和宽度50绘制CGImage。 我试图通过
来做到这一点CGContextDrawImage(fullContext, CGRect(x: 4, y: 0, width: 50,
height: size.height), tiledBackground.CGImage);
但是设备总是从(4.0)到(100,0)重绘CGImage而忽略我的宽度参数,从而绘制tilesBackground.CGImage。