我已经实现了把一个UIView直接生成图片。
UIGraphicsBeginImageContext(myView.bounds.size); [myView.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext();
但是,我需要截取这个UIView的一部分,比如中间100个像素,怎么实现呢?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这个地方不是已经获取到当前图像的context了么,然后用路径裁剪获取需要的部分应该就可以吧。
不知道可以么,没有试。
self.view就是想要保存的view
我没看清楚题目 如果是保存指定区域的话,就把上述代码得到的image,通过下面的代码得到所需的指定区域图片并保存。