如何在 Mac 上打开图像

发布于 2024-10-21 08:39:59 字数 73 浏览 2 评论 0原文

在我的应用程序中,我希望用户能够单击按钮浏览文件或将其拖放到应用程序中并让它打开图像。我该怎么做?哪种方法最简单或者您推荐哪种方法?

In my app I want the user to either be able to click a button browse for a file or drag and drop it into the application and have it open the image. How can I do this? Which method would be easiest or do you recommend?

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

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

发布评论

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

评论(1

浪荡不羁 2024-10-28 08:39:59

在我的应用程序中,我希望用户能够单击按钮浏览文件

NSOpenPanel 的文件,并指定允许的类型

或将其拖放到应用程序中并让它打开图像。我该怎么做?哪种方法最简单或者您推荐哪种方法?

子类 NSDocument,并将文档类型与图像 mime-type 相关联;此关联是在您的应用程序的 plist 资源中建立的。

除非您有特殊需求,否则可以使用 CGImage 和/或 NSImage api 来打开图像。

In my app I want the user to either be able to click a button browse for a file

use NSOpenPanel, and specify the allowed types

or drag and drop it into the application and have it open the image. How can I do this? Which method would be easiest or do you recommend?

subclass NSDocument, and associate the document type with the image mime-type; this association is made in your app's plist resource.

unless you have special needs, you can use CGImage and/or NSImage apis to open the image.

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