捕获UIView作为UIImage
我一直在使用这种方法将UIView
转换为UIImage
。 即视图的屏幕快照 –
@interface UIView(Extended) - (UIImage *) imageByRenderingView; @end @implementation UIView(Extended) - (UIImage *)imageByRenderingView { UIGraphicsBeginImageContext(self.bounds.size); [self.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return resultingImage; } @end
要使用它,我这样做 –
UIImage *currImage = [self.view imageByRenderingView];
这给出了整个UIView
的图像表示。 现在我想要2张图片,一张是UIView
的上半部分,另一张是下半部分。 我怎么做?
你可以使用下面的代码将你的UIImage
分成两部分:
CGImageRef topOfImageCG = CGImageCreateWithImageInRect(currImage.CGImage, CGRectMake(0, 0, currImage.size.width, currImage.size.height / 2.0)); UIImage *topOfImage = [UIImage imageWithCGImage:topOfImageCG]; CGImageRelease(topOfImageCG);
- 用AVCaptureSession在iOS上读取QRCodes – alignment问题?
- iOS – WKWebView仅支持HTTP的跨源请求
- 什么是Model View Controller设计模式?
- 是否可以生成通配符AppID的企业/内部供应configuration文件?
- 在iOS上未收到Bluetooth LE通知
- 通过移动Safari中的input字段进行选项卡使浏览器跳转
- pubnub-chat objective c的用户列表
- UITableView reloadData似乎不会导致cellForRowAtIndexPath:被调用
- 在Swift 3 iOS中向前游泳时,在UIPageViewController中调用After和Before方法