iPhone objective c 截屏代码
2010-10-19 20:49:17 来源:WEB开发网核心提示:objective c 截屏代码-(void)save{UIGraphicsBeginImageContext(mybackgroundview.bounds.size); //currentView 当前的view[mybackgroundview.layer renderInContext:UIGraphicsGe
objective c 截屏代码
-(void)save{
UIGraphicsBeginImageContext(mybackgroundview.bounds.size); //currentView 当前的view
[mybackgroundview.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
}截取 您想要的一层
UIGraphicsBeginImageContext(CGSizeMake(320, 300)); //currentView 当前的view
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);
截取自定义的大小
刚刚用到 不知道 是不是您想要的
- ››iphone图片拉伸的几种方法
- ››iphone正则表达式的简单使用
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
- ››iphone 获取屏幕的宽度和高度
- ››iPhone读取工程包中的二进制文件
- ››iPhone新手机 不挂YouTube APP
- ››iPhone 获取指定格式的时间和日期
- ››iPhone版PPS走进生活 观赏体验媲美PC版
- ››iPhone两种不同的应用程序:两种方法的哲学思想
赞助商链接