打开相机胶卷上的精确照片

发布于 2024-12-02 16:58:40 字数 481 浏览 0 评论 0原文

我正在开发一个相机应用程序,我想在其中添加一些已存在于库存应用程序中的功能。我的问题是复制左下角的小方块(纵向模式),其中显示用户刚刚拍摄的照片的微缩略图;然后,当用户点击它时,照片应用程序应该在相机胶卷中保存的最后一张照片上打开。

我可以使用 ALAssetsLibrary 加载相机胶卷中最新照片的缩略图 - 我可以使用 [UIImage imageWithCGImage:[结果缩略图]] 访问它 - 但即使我有它的 ALAsset URL,我也可以不要打开照片应用程序。我正在尝试这样做:

[[UIApplication sharedApplication] openURL:result.defaultRepresentation.url];

但什么也没有发生。

我可以在我的应用程序内部显示它,并使用额外的 UIView,但我认为使用官方照片应用程序会更简单、更智能!

谁能帮助我吗?先感谢您!

I'm developing a camera application where I'd like to put some functions that are already present in the stock app. My problem is replicating the little square in the bottom left corner (in portrait mode) where the micro-thumbnail of the photo that the user has just taken is shown; then, when the user tap on it, the photo app should open, on the last photo saved in the camera roll.

I can load the thumbnail of the newest photo in camera roll with ALAssetsLibrary - I've access to it with [UIImage imageWithCGImage:[result thumbnail]] - but even if I have its ALAsset URL, I can't open the photo app. I'm trying to do it with:

[[UIApplication sharedApplication] openURL:result.defaultRepresentation.url];

But nothing happens.

I could display it internally in my app, with an additional UIView, but I think will be simpler and... smarter to use the official photo app!

Can anyone help me? Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜警司 2024-12-09 16:58:40

您可能想要使用 UIImagePickerController,如下所示:https://stackoverflow.com/a/11078182/883413

You may want to use the UIImagePickerController, as answered here: https://stackoverflow.com/a/11078182/883413

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文