我想用libpng读取PNG文件,我想使用过滤器png_set_rgb_to_gray_fixed将RGB值转换为灰度。原始图像每通道8位,因此每像素3个字节。我希望输出为每像素8位。但是png_get_rowbytes告诉我行大小是3 *宽。我做错了什么?
这是我的代码(为简洁起见,我删除了错误检查代码):
FILE *fp = fopen(filename,"rb");
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
png_infop info_ptr = png_create_info_struct(png_ptr);
png_infop end_info = png_create_info_struct(png_ptr);
png_init_io(png_ptr, fp);
png_uint_32 width,height;
int color_depth,color_type, interlace_type, compression_type, filter_method;
png_read_info(png_ptr, info_ptr);
png_get_IHDR(png_ptr, info_ptr, &width, &height,
&color_depth, &color_type, &interlace_type,
&compression_type, &filter_method);
assert(color_type == PNG_COLOR_TYPE_RGB);
png_set_rgb_to_gray_fixed(png_ptr, 3,-1,-1);
int rowbytes = png_get_rowbytes(png_ptr, info_ptr);
assert(rowbytes == width ); // FAILS: rowbytes == 3*width
答案 0 :(得分:1)
您需要致电png_read_update_info:
png_read_update_info()更新info_ptr指向的结构,以反映已请求的任何转换。例如,将使用png_read_update_info()更新rowbytes以处理隔行扫描图像的扩展。
所以:
png_set_rgb_to_gray_fixed(png_ptr, 3,-1,-1);
png_read_update_info(png_ptr, info_ptr);
int rowbytes = png_get_rowbytes(png_ptr, info_ptr);