对 Flash Player 中的 CMYK 图像进行编码/解码
我目前正在 Flash Player 中开发图像编辑器,并且我需要能够将 CMYK 图像导出到我的服务器。我对颜色配置文件等完全陌生,我想知道如何才能实现这一点。我很确定 Flash Player 中的所有图像都是 ARGB,那么有没有办法正确转换这些值?
I'm currently working on an image editor in Flash Player, and I need to be able to export CMYK images to my server. I'm completely new to color profiles and the like, and I was wondering how I could accomplish this. I am pretty sure all images in Flash Player are ARGB, so is there a way to convert the values properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要阅读一些有关 JPEG 格式的内容 - 我的意思是,不仅仅是“JPEG 用于 XYZ,因为 XYZ”。 - 我的意思是像实际格式一样精确到字节。因为我真的不知道是否有人为此创建了一个实际的库,也许你必须这样做。
您需要一个能够理解 JPEG 格式并知道它是 CMYK 还是 RGB 的库,然后实际对其进行转换(包括 CMYK-RGB 数学)。
它不包含在闪存内置库中。
You will need to read a little bit about the JPEG format - I mean, not just "JPEGs are used in XYZ, because XYZ." - I mean like the actual format down to the bytes. Because I don't really know if anybody did an actual library for that, maybe you will have to do it.
You need a library that understands the JPEG format and knows whether it is CMYK or RGB, and then to actually convert it (that includes the CMYK-RGB math).
It is not included in the flash built-in libs.