gpt4 book ai didi

ios - 从 UIImagePickerControllerReferenceURL 访问 ext

转载 作者:行者123 更新时间:2023-11-28 22:53:44 24 4
gpt4 key购买 nike

如何只访问 UIImagePickerControllerReferenceURL 的 MIME ext 部分?这是我在 NSLog -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

时得到的结果
UIImagePickerControllerReferenceURL = "assets-library://asset/asset.PNG?id=F61B754A-705C-4BFB-9965-DE34C7B93A2B&ext=PNG";

我只想访问 MIME 类型。当我使用以下方式将图像发送到我的网络服务器时:

NSData *imageData = UIImageJPEGRepresentation(_selectedImage, 1.0);

//non-important ASIFormDataRequest set-up
[request setData:imageData withFileName:uniqueString andContentType:@"image/jpeg" forKey:@"photo"];

图片乱七八糟。但是当我使用时:

NSData *imageData = UIImagePNGRepresentation(_selectedImage);

//non-important ASIFormDataRequest set-up
[request setData:imageData withFileName:uniqueString andContentType:@"image/png" forKey:@"photo"];

图片很好。但是我上传的所有照片都不会是 PNG。

最佳答案

Dimitris 对此的回答thread工作起来很有魅力。我现在要继续打字,这样就不会沦为琐碎的答案,然后自动变成评论。

关于ios - 从 UIImagePickerControllerReferenceURL 访问 ext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11245330/

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