CGPDFDataFormatJPEG2000 可以用于 JPEG2000 图像以外的其他内容吗?
使用 Quartz 2D PDF 例程,除了 XObject 图像之外的任何情况下,CGPDFStreamRef
PDF 流的 CGPDFDataFormat
格式是否可以等于 CGPDFDataFormatJPEG2000
使用 /JPXDecode
过滤器?
换句话说,CGPDFDataFormatJPEG2000
格式是否曾用于 JPEG2000 图像流以外的任何内容?合理的答案是否,但常见用法与理论上可能的用法之间总是存在差异。
Using the Quartz 2D PDF routines, can the CGPDFDataFormat
format of a CGPDFStreamRef
PDF stream be equal to CGPDFDataFormatJPEG2000
in any case other than for an XObject image with a filter of /JPXDecode
?
In other words, is the CGPDFDataFormatJPEG2000
format ever used for anything other than JPEG2000 image streams? The reasonable answer would be no, but there can always be a difference between common usage and what's theoretically possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JPXDecode 过滤器期望 JPEG2000 图像文件存储在图像 XObject 中,而不仅仅是压缩的原始数据。我可以说 100% 它总是用于图像 XObject。但理论上没有什么可以阻止您将原始内容流数据包装为 JPEG2000 图像,然后将 JPXDecode 过滤器与常规内容流一起使用。这是不切实际的。
JPXDecode filter expects a JPEG2000 image file to be stored in the image XObject, not just compressed raw data. I can say 100% it is always used for image XObjects. But theoretically nothing stops you to wrap your raw content stream data as a JPEG2000 image and then use the JPXDecode filter with a regular content stream. It is just not practical.