最新回答 / 沉睡一夏
剪切是对于原图来说的坐标位置和大小,你可以尝试改变坐标看看效果先,imageView 展示的时候选择原尺寸大小显示,ImageView的尺寸可以放大一些添加个背景颜色,这样比较好的看出原因所在,只是提供个思路给你
2017-01-12
执行CGImageCreateWithImageInRect方法之后,需要执行CGImageRelease释放CGImageRef
如下是官方文档上的介绍注意点:
The resulting image retains a reference to the original image, which means you may release the original image after calling this function.
begin至end中间的绘制代码没有必要,拿到CGImageRef之后,直接[UIImage imageWithCGImage:imageRef]就能拿到图片
如下是官方文档上的介绍注意点:
The resulting image retains a reference to the original image, which means you may release the original image after calling this function.
begin至end中间的绘制代码没有必要,拿到CGImageRef之后,直接[UIImage imageWithCGImage:imageRef]就能拿到图片
2016-12-17