12

我在 UITableView 中显示了非常大尺寸的图像,因此我的应用程序在一段时间后崩溃了。现在我想调整图像大小并将其保存到磁盘。有人可以帮我从 NSData/UIImage 调整图像大小并将其保存到磁盘。

我得到了从 UIImage 调整图像大小的代码,因此我在 UIImage 对象中调整了图像大小,如何将其保存到 iphone 沙箱。

谢谢,

4

3 回答 3

30

这是从工作代码保存到 iOS 上 Documents 目录的代码。

// Convert UIImage to JPEG
NSData *imgData = UIImageJPEGRepresentation(image, 1); // 1 is compression quality

// Identify the home directory and file name    
NSString  *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.jpg"]; 

// Write the file.  Choose YES atomically to enforce an all or none write. Use the NO flag if partially written files are okay which can occur in cases of corruption
[imgData writeToFile:jpgPath atomically:YES]; 
于 2012-03-19T06:44:24.373 回答
4

你问'我如何写一个文件'对吗?

我猜你可能想写入Library/Caches目录有一点复杂,所以当手机备份时你不保存这些文件。

获取带有 w/ 的应用程序文件夹的根目录NSHomeDirectory(),然后附加 Library/Caches。

您可以使用 NSData 上的方法将 NSData 写入 fs。如果你有一个 UIImage,你可以做UIImageJPEGRepresentation()orUIImagePNGRepresentation来获取数据。

于 2009-07-19T22:59:04.727 回答
1

NSData *imgData = UIImageJPEGRepresentation(image, 1);

CGImageSourceRef source = CGImageSourceCreateWithData((CFMutableDataRef)imgData, NULL);
NSDictionary *metadata = [(NSDictionary *) CGImageSourceCopyPropertiesAtIndex(source,0,NULL)autorelease];
NSString  *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.jpg"];
[imageMutableData writeToFile:jpgPath atomically:YES];

它会将您的图像复制到沙箱中的文档文件夹,名称为Test.jpg

如果你想为 PNG 做,你可以试试UIImagePNGRepresentation(image);

于 2011-09-27T11:31:31.820 回答