我已经实现了把一个UIView直接生成图片。
UIGraphicsBeginImageContext(myView.bounds.size);
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
但是,我需要截取这个UIView的一部分,比如中间100个像素,怎么实现呢?
- (UIImage *)getImageViewWithView:(UIView *)view {
UIGraphicsBeginImageContext(view.frame.size);
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:NO];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
这个地方不是已经获取到当前图像的context了么,然后用路径裁剪获取需要的部分应该就可以吧。
CGContextBeginPath(context);
CGContextAddRect(context, rect)
CGContextClip(context);
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。