码迷,mamicode.com
首页 > Web开发 > 详细

JS实现简单的图片轮转

时间:2014-05-07 21:43:53      阅读:532      评论:0      收藏:0      [点我收藏+]

标签:style   ext   width   get   c   res   

+(UIImage*)createImageFromView:(UIView*)view

{

//obtain scale

    CGFloat scale = [UIScreen mainScreen].scale;

开始绘图,下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了

    UIGraphicsBeginImageContextWithOptions(CGSizeMake(view.frame.size.width,
                                                      view.frame.size.height),
                                           NO,
                                           scale);
   将view上的子view加进来
    [view.layer renderInContext:context];
    CGContextRestoreGState(context);
    //开始生成图片
    UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

JS实现简单的图片轮转,布布扣,bubuko.com

JS实现简单的图片轮转

标签:style   ext   width   get   c   res   

原文地址:http://blog.csdn.net/u010792238/article/details/25218931

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!