我们都知道,给手机屏幕做截图很容易,如下面代码
- (UIImage*) imageWithUIView:(UIView*) view{
// 创建一个bitmap的context
// 并把它设置成为当前正在使用的context
UIGraphicsBeginImageContext(view.bounds.size);
CGContextRef currn...
分类:
其他好文 时间:
2015-01-29 14:37:16
阅读次数:
157
1.截取当前屏幕
CGSize windowSize = behandView.bounds.size;
UIGraphicsBeginImageContextWithOptions(windowSize, YES, 2.0);
CGContextRef context = UIGraphicsGetCurrentContext();
[behandVi...
分类:
移动开发 时间:
2015-01-20 18:11:44
阅读次数:
282
UIImage *image01 = [UIImage imageNamed:@"002.png"];//原图
NSData *dataOf02 =UIImageJPEGRepresentation(image01, 0.5);//压缩图片内容,不影响图片的size,得到一个原大小,但更模糊的图片。
UIImage *image02 = [UIImage imageWit...
分类:
其他好文 时间:
2014-05-21 08:14:49
阅读次数:
315