博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIImage保存为JPG,PNG的方法
阅读量:6632 次
发布时间:2019-06-25

本文共 1181 字,大约阅读时间需要 3 分钟。

View Code
1 / Create paths to output images  2 NSString  *pngPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.png"];  3 NSString  *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.jpg"];  4   5 // Write a UIImage to JPEG with minimum compression (best quality)  6 // The value 'image' must be a UIImage object  7 // The value '1.0' represents image compression quality as value from 0.0 to 1.0  8 [UIImageJPEGRepresentation(image, 1.0) writeToFile:jpgPath atomically:YES];  9  10 // Write image to PNG 11 [UIImagePNGRepresentation(image) writeToFile:pngPath atomically:YES]; 12  13 // Let's check to see if files were successfully written... 14  15 // Create file manager 16 NSError *error; 17 NSFileManager *fileMgr = [NSFileManager defaultManager]; 18  19 // Point to Document directory 20 NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]; 21  22 // Write out the contents of home directory to console 23 NSLog(@"Documents directory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectory error:&error]);

转载于:https://www.cnblogs.com/iosNoteBook/archive/2012/02/09/2344704.html

你可能感兴趣的文章
Common Lisp支持中文编辑和编译的windows下环境搭建志
查看>>
Java开发工具IntelliJ IDEA使用教程:创建新的Andriod项目
查看>>
css续集1
查看>>
http协议中的header详解
查看>>
使用common-codec进行md5加密
查看>>
MaxCompute应用限制整理
查看>>
聊聊sentinel的SimpleHttpCommandCenter
查看>>
Linux学习笔记第二周第四次课(2月1日)
查看>>
sqlserver用sql语句创建及查询链接服务器所有的数据库、用户和表
查看>>
JAVA for循环
查看>>
https证书一年多少钱?
查看>>
linux Screen的安装与简单应用
查看>>
【前端开发】JSON 完全自学手册
查看>>
iptables
查看>>
记世界上第一台运行图形化用户界面操作系统的微型电脑
查看>>
DEV报表基础教程(二)
查看>>
Spark的transformation 和 action的操作学习笔记
查看>>
socket远程控制(练手)___源码
查看>>
OPPO F9配置曝光 配备6.3英寸19.5:9触摸屏
查看>>
使用Vue.Js结合Jquery Ajax加载数据的两种方式
查看>>