gpt4 book ai didi

c - 使用 libpng 在 C 中以灰度或 RGB 编写 PNG

转载 作者:太空宇宙 更新时间:2023-11-04 03:54:24 27 4
gpt4 key购买 nike

我正在尝试使用 C 中的 libpng 从图像写入 PNG 文件,该图像可以是灰度(8 位*1 分量)或 rgb(8 位*3 分量)。

我阅读了手册并编写了这段不起作用的代码:-/

/* writing the image */
png_byte *row_pointers[img->height];
int h;
for (h = 0 ; h < img->height ; h++)
{
row_pointers[h] = img->data+h*img->width*image_components;
}
png_write_image(png_ptr, row_pointers);

图像中没有任何内容,我不明白为什么。

img.data 指向图像数据(在RGB格式的情况下是交错的)

最佳答案

文档说您应该使用 png_write_end,请参阅 http://www.libpng.org/pub/png/libpng-1.2.5-manual.html 中的“完成顺序写入”部分.那里有很多例子(例如 http://zarb.org/~gc/html/libpng.html )

关于c - 使用 libpng 在 C 中以灰度或 RGB 编写 PNG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18010613/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com