在java中读取和写入.PPM图像?
我必须在java中读取ppm图像,然后将图像转换为负片。然后 PPM 图像有一个幻数“P6”,然后是 # Comment 字符,然后是高度和宽度。最后有 255 个字符,后面是数据。 我想读取标题并验证它是 P3 还是 P6。 然后读取图像尺寸,然后使用java将数据转换为图像的负数, 请建议我最好的方法
I have to read a ppm image in java and then convert the image to negative. Then PPM image has a magic number "P6" and then a # Comment char, and then height and width. and finally has 255 character, that is followed by data.
i want to read header and verify if it is P3 or P6.
and then read image dimension and then using java convert the data to negative of the image,
Please suggest me the best way to do it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JAI 图书馆提供了帮助。效果很好
JAI libraries helped. and it worked ok