确定 UIImage 的色彩空间
我想知道是否有一种简单的方法来获取图像的色彩空间(即加载到 UIImage 中的图像)?例如,我有一个 TIFF 图像,我希望能够确定它是否使用 RGB 色彩空间。有没有一种简单的方法可以在不操纵像素数据的情况下做到这一点?我知道有一些 CGColorSpace 函数,但它们似乎都没有这样做,只是创建颜色空间并操纵它们(以及更高级的函数)。
提前致谢。
I'm wondering if there's an easy way to get the colorspace of an image (i.e. an image loaded into a UIImage)? For example, I have a TIFF image and I'd like to be able to determine if it uses the RGB colorspace or not. Is there an easy way to do this without manipulating pixel data? I know there's some CGColorSpace functions, but none of them seem to do this, just create colorspaces and manipulate them (and much more advanced functions).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须通过CGImage获取色彩空间。您可以使用以下函数/属性行来完成此操作:
因此,要获取图像的色彩空间,您需要这样做:
当然,请确保遵循 CG 对象的获取/创建/复制规则。
You have to get the color space through CGImage. You can do it with the following line of functions/properties:
So to get the color space of an image, you'd do:
And of course, make sure to follow the get/create/copy rules for CG objects.
Swift
获取 UIImage 的色彩空间:
检查色彩空间类型的示例代码:
请参阅 Apple 的 CGColorSpace 文档“访问系统定义的色彩空间” 了解色彩空间类型的完整列表。
Swift
To obtain the color space of a UIImage:
Example code that checks the color space type:
See Apple's CGColorSpace Documentation "Accessing System-Defined Color Spaces" for the complete list of color space types.