当前位置: 代码迷 >> Iphone >> CoreGraphics有关方法
  详细解决方案

CoreGraphics有关方法

热度:173   发布时间:2016-04-25 05:28:50.0
CoreGraphics相关方法

// 将view转为image(不经常用到的功能)(摘自SCCatWaitingHUD)

- (UIImage *)convertViewToImage

{

  CGSize s = self.bounds.size;

    //下面方法,第一个参数表示区域大小。

    //第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES

    //第三个参数就是屏幕密度。

  UIGraphicsBeginImageContextWithOptions(s, NO, [UIScreen mainScreen].scale);

  [self.layer renderIntoContext:UIGraphicsGetCurrentContext()];

  UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();

  return image;

}

(未完待续)

  相关解决方案