gpt4 book ai didi

iphone - 如何使用特定名称保存 UIImagePicker 图像

转载 作者:行者123 更新时间:2023-12-03 20:26:51 25 4
gpt4 key购买 nike

我使用 UIPickerController 从 iPhone 捕获图像,然后如何以编程方式以特定名称保存它,并稍后调用图像(通过使用名称),是否有可能更改图像大小,例如。从 100 x 100 像素到 50 x 50 像素

谢谢

最佳答案

以下代码片段会将图像保存到文件中:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
UIImage *anImage = [info valueForKey:UIImagePickerControllerOriginalImage];
NSData *imageData = UIImageJPEGRepresentation(anImage, 1.0);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *path = [paths objectAtIndex:0];
NSString *tmpPathToFile = [[NSString alloc] initWithString:[NSString stringWithFormat:@"%@/specificImagedName.jpg", path]];

if([imageData writeToFile:tmpPathToFile atomically:YES]){
//Write was successful.
}
}

然后从文件中调用图像:

NSData *imageData = [NSData dataWithContentsOfFile:tmpPathToFile];
[UIImage imageWithData:imageData];

最后,this post有一种可用的方法,您可以将其合并到项目中来调整图像大小。

关于iphone - 如何使用特定名称保存 UIImagePicker 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2046108/

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