但是当我使用drawInRect API在上下文中绘制图片时,图片是这样的
矩形的大小就是图像的大小。图像是@1x 和@2x。
区别很明显,图片模糊,图片右侧有一条灰线,我的imac是retina分辨率。
================================================= 我有找到了原因,
[self.headLeftImage drawInRect:NSMakeRect(100,
100,
self.headLeftImage.size.width,
self.headLeftImage.size.height)];
CGContextRef context = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
CGContextSaveGState(context);
CGContextTranslateCTM(context, self.center.x , self.center.y);
[self.headLeftImage drawInRect:NSMakeRect(100,
100,
self.headLeftImage.size.width,
self.headLeftImage.size.height)];
CGContextRestoreGState(context);