码迷,mamicode.com
首页 >  
搜索关键字:uigraphicsbeginimage    ( 3个结果
如何给UITableView 或 UIScrollView 的content 做截图
我们都知道,给手机屏幕做截图很容易,如下面代码 - (UIImage*) imageWithUIView:(UIView*) view{ // 创建一个bitmap的context // 并把它设置成为当前正在使用的context UIGraphicsBeginImageContext(view.bounds.size); CGContextRef currn...
分类:其他好文   时间:2015-01-29 14:37:16    阅读次数:157
iOS 截屏以及相关扩展(UIImage的绘制和渲染)
1.截取当前屏幕   CGSize windowSize = behandView.bounds.size;     UIGraphicsBeginImageContextWithOptions(windowSize, YES, 2.0);     CGContextRef context = UIGraphicsGetCurrentContext();     [behandVi...
分类:移动开发   时间:2015-01-20 18:11:44    阅读次数:282
利用UIImageJPEGRepresentation与UIGraphicsBeginImageContext进行图片压缩的简单比较
UIImage *image01 = [UIImage imageNamed:@"002.png"];//原图 NSData *dataOf02 =UIImageJPEGRepresentation(image01, 0.5);//压缩图片内容,不影响图片的size,得到一个原大小,但更模糊的图片。 UIImage *image02 = [UIImage imageWit...
分类:其他好文   时间:2014-05-21 08:14:49    阅读次数:315
3条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!