我能够成功地利用UIView
例如drawScreen
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
我已经添加了我UIImageView
作为上面的子视图,UIView
例如drawScreen
,这样看起来你正在绘制图像。
现在我想用绘图保存图像,我也使用了这部分
UIGraphicsBeginImageContext(CGSizeMake(drawScreen.frame.size.width, drawScreen.frame.size.height));
问题:
问题是生成的保存图像尺寸过大drawScreen
,而我的原始图像质量很好。例如,
大小drawScreen
为 300x300
我的原始图像的大小是 640x640
结果图像的大小也是 300x300。
如何通过编辑保存原始大小的图像?