JPEG-2000:我可以动态调整图像大小而不重新采样吗?
JPEG 2000 的优点之一是可以轻松压缩图像——只需输入更少的字节即可。
是否有类似的方法来缩放图像,以便我可以使用全尺寸文件中的字节发送缩略图,而无需重新采样?
One of the nice features of JPEG 2000 is that it's easy to downres an image -- just feed out fewer bytes.
Is there a similar way to scale the image, such that I could send a thumbnail using bytes in the full-size file, without resampling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,要调整大小,您仍然需要读取原始大小,重新采样到新大小,然后重新压缩。
您可以编写文件,使其具有大小为 2 的幂的层,并且大小的相对增量增量非常小,然后提取这些层。
No, to resize you will still have to read the original size, resample to the new size, and then recompress.
You can write your file such that it has layers with powers-of-2 sizes, with a very small relative incremental increase in size, and extract those layers.