最新回答 / 沉睡一夏
剪切是對(duì)于原圖來(lái)說(shuō)的坐標(biāo)位置和大小,你可以嘗試改變坐標(biāo)看看效果先,imageView 展示的時(shí)候選擇原尺寸大小顯示,ImageView的尺寸可以放大一些添加個(gè)背景顏色,這樣比較好的看出原因所在,只是提供個(gè)思路給你
2017-01-12
執(zhí)行CGImageCreateWithImageInRect方法之后,需要執(zhí)行CGImageRelease釋放CGImageRef
如下是官方文檔上的介紹注意點(diǎn):
The resulting image retains a reference to the original image, which means you may release the original image after calling this function.
begin至end中間的繪制代碼沒(méi)有必要,拿到CGImageRef之后,直接[UIImage imageWithCGImage:imageRef]就能拿到圖片
如下是官方文檔上的介紹注意點(diǎn):
The resulting image retains a reference to the original image, which means you may release the original image after calling this function.
begin至end中間的繪制代碼沒(méi)有必要,拿到CGImageRef之后,直接[UIImage imageWithCGImage:imageRef]就能拿到圖片
2016-12-17