读取PPM文件并将其存储在数组中;用C编码
我需要读取 PPM 文件并将其存储在用 C 编写的数组中。 有人可以帮我做这个吗?
多谢。
I need to read a PPM file and store it in an array written in C.
Can anybody help me out doing this?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下代码展示了如何读取、更改像素颜色以及写入图像
PPM 格式。我希望它有帮助。
The following code shows how to read, change the pixel colour and write an image in
PPM format. I hope it helps.
这是
PPM 规范。
PPM 文件由 9 个部分组成,各部分之间用空格分隔。
P6
。然后跳过其他空白。Here is the
PPM specification.
The PPM file is built in 9 sections separated by white-spaces.
P6
. Then skip other white-spaces.