java创建TIF文件
我有一个来自扫描仪的 awt 图像(黑白),我想将其保存在 TIF 文件中,我尝试使用 JAI,但它的文档很差,所以我无法理解一些 JAI.create 参数。
提前谢谢。
I've got an awt image (bw) coming from a scanner, I'd like to save it in a TIF file, I tried with JAI but it has a poor documentation so I'm not able to understand some JAI.create parameters.
Thx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上并不需要使用 JAI 进行图像读/写操作。
javax.imageio.ImageIO 做得很好。即要编写 TIFF,请使用以下内容:
但如果您必须使用 JAI,它将类似于:
(您也可以将 awt 图像直接作为 myImageOp 放入“filestore”操作中)
You don't really need to use JAI for image read/write operations.
javax.imageio.ImageIO doing good job with it. I.e. to write TIFF use something like:
But if you have to use JAI, it will be something like:
(also you can put your awt image directly as myImageOp in "filestore" operation)