You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
636 B
25 lines
636 B
4 years ago
|
//
|
||
|
// CALayer+OCBarrage.m
|
||
|
// OCBarrage
|
||
|
//
|
||
|
// Created by QMTV on 2017/8/29.
|
||
|
// Copyright © 2017年 LFC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "CALayer+OCBarrage.h"
|
||
|
|
||
|
@implementation CALayer (OCBarrage)
|
||
|
|
||
|
- (UIImage *)convertContentToImageWithSize:(CGSize)contentSize {
|
||
|
UIGraphicsBeginImageContextWithOptions(contentSize, 0.0, [UIScreen mainScreen].scale);
|
||
|
//self为需要截屏的UI控件 即通过改变此参数可以截取特定的UI控件
|
||
|
[self renderInContext:UIGraphicsGetCurrentContext()];
|
||
|
UIImage *image= UIGraphicsGetImageFromCurrentImageContext();
|
||
|
UIGraphicsEndImageContext();
|
||
|
|
||
|
return image;
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|