gpt4 book ai didi

iphone - 如何在 iOS 中获取保存的图像文件路径

转载 作者:行者123 更新时间:2023-11-28 17:58:05 27 4
gpt4 key购买 nike

您好,我正在开发一个应用程序,其中有一个选项可以从 iOS 照片库中挑选照片。我必须将选定的照片上传到服务器。要上传图像,我正在使用 Kaltura SDK,所以我无法直接将 UIImage 发送到服务器。我需要发送保存的图像文件路径

为此我找到了一个解决方案,那就是将选定的照片保存在特定的文件路径中,然后我将使用该文件路径。但问题是我不希望在手机内存中再次保存照片,因为这些照片已经存储在特定路径中。

那么有没有其他选项可以在不再次保存的情况下检索保存的图像文件路径?

最佳答案

试试这个:

- (void)saveImage: (UIImage*)image
{
if (image != nil)
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path = [documentsDirectory stringByAppendingPathComponent:
@"test.png" ];
NSData* data = UIImagePNGRepresentation(image);
[data writeToFile:path atomically:YES];
}
}

- (UIImage*)loadImage
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString* path = [documentsDirectory stringByAppendingPathComponent:
@"test.png" ];
UIImage* image = [UIImage imageWithContentsOfFile:path];
[self sendAction:path];
return image;
}

关于iphone - 如何在 iOS 中获取保存的图像文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16216770/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com