3

嗨,我已经使用 libpng 将灰度 png 图像转换为使用 c 的原始图像。在该库中,函数png_init_io需要文件指针来读取 png。但是我将 png 图像作为缓冲区传递,是否有任何其他替代函数可以将 png 图像缓冲区读取到原始图像。请帮我

int read_png(char *file_name,int *outWidth,int *outHeight,unsigned char **outRaw)  /* We need to open the file */
{
......
/* Set up the input control if you are using standard C streams */
   png_init_io(png_ptr, fp);
......
}

相反,我需要这样

int read_png(unsigned char *pngbuff, int pngbuffleng, int *outWidth,int *outHeight,unsigned char **outRaw)  /* We need to open the file */
{
}
4

1 回答 1

2

从手册中png_init_io可以看出,您可以使用png_set_read_fn.

这样做,您可能会误png_init_io以为它正在从文件中读取,而实际上您正在从缓冲区中读取:

struct fake_file
{
    unsigned int *buf;
    unsigned int size;
    unsigned int cur;
};

static ... fake_read(FILE *fp, ...) /* see input and output from doc */
{
    struct fake_file *f = (struct fake_file *)fp;
    ... /* read a chunk and update f->cur */
}

struct fake_file f = { .buf = pngBuff, .size = pngbuffleng, .cur = 0 };
/* override read function with fake_read */
png_init_io(png_ptr, (FILE *)&f);
于 2013-03-14T13:41:14.360 回答