java pgm 2 jpeg/png
我有一个包含 0-254 灰度值的 int 数组,我还有图像的 x 和 y 大小。 创建 pgm 图像是一件容易的事情,但我想在 jsp 中显示它,所以我需要以某种方式将其转换为 jpeg 或 png 图像。 如果您建议 jai,请告诉我要查看哪些课程,或者如何在 jai 中实际进行操作。 非常感谢,提前。
I have an int array containing gray scale values from 0-254, i also have the x and y size of the image. It is an easy thing to create an pgm image, but i want to display it in a jsp, so i need somehow to convert it to a jpeg or png image.
If you suggest jai, than please tell me at which classes to look, or how to actually do it in jai.
Thanks a lot, in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ImageMagick 非常适合转换图像和 Jmagick 提供了直接从java程序调用的接口。
ImageMagick works well for converting images and Jmagick provides an interface to call directly from java programs.
也许完全跳过 PGM?
使用 JAI ImageIO api,特别是ImageIO 实用程序类
来自 Java 图像处理手册
Maybe skip the PGM entirely?
uses the JAI ImageIO api, specifically the ImageIO utility class
WriteableRaster sample from the Java Image Processing cookbook