如何访问 icns 文件中的不同格式(Apple 图标图像格式)

发布于 2024-11-29 12:41:23 字数 187 浏览 1 评论 0原文

有谁知道如何访问不同格式的 icns 文件? 例如,此文件包含同一图标的多种尺寸:

icn file with differentsized

在某些情况下,我只想要大的一个在其他情况下,我想要小的。 我在可可中找不到任何东西。

does anyone know how to access different formats of an icns file?
For example this file contains multiple sizes of the same icon:

icn file with different sizes

In some cases I just want the large one and in other cases I want the small one.
I couldn't find something in Cocoa.

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

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

发布评论

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

评论(1

清君侧 2024-12-06 12:41:23

NSImageNSImageRep 的容器。当您加载 icns 文件时,您将获得一个图像,其中包含文件中每种尺寸的 NSBitmapImageRep。您可以迭代图像的 representations 属性来访问它们。 (此外,绘图时图像会自动选择最合适的代表。)

An NSImage is a container for NSImageReps. When you load an icns file, you get an image containing an NSBitmapImageRep for each size in the file. You can iterate over the image’s representations property to access them. (Also, the image will automatically choose the most appropriate rep when drawing.)

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