LibPng读入结构

LibPng Read Into Struct

本文关键字:结构 LibPng      更新时间:2023-10-16

我似乎无法让libpng将其数据转储到我的结构中。我不知道我做错了什么。我正在尝试翻转字节,因为PNG的存储方式是自上而下,而我需要数据自下而上,向上。

首先我的结构看起来像:

typedef union RGB
{
    uint32_t Color;
    struct
    {
        unsigned char B, G, R, A;
    } RGBA;
} *PRGB;
然后我创建了一个如下的向量:
png_init_io(PngPointer, hFile);
png_set_sig_bytes(PngPointer, 8);
png_read_info(PngPointer, InfoPointer);
uint32_t width, height;
int bitdepth, colortype, interlacetype, channels;
png_set_strip_16(PngPointer);
channels = png_get_channels(PngPointer, InfoPointer);
png_get_IHDR(PngPointer, InfoPointer, &width, &height, &bitdepth, &colortype, &interlacetype, nullptr, nullptr);

uint32_t RowBytes = png_get_rowbytes(PngPointer, InfoPointer);
unsigned char** RowPointers = png_get_rows(PngPointer, InfoPointer);
std::vector<RGB> Pixels(RowBytes * height);   //Amount of bytes in one row * height of image.
//Crashes in the for loop below :S
for (int I = 0; I < height; I++)
{
    for (int J = 0; J < width; J++)
    {
        Pixels[(height - 1 - I) * width + J].RGBA.B = *(RowPointers[J]++);
        Pixels[(height - 1 - I) * width + J].RGBA.G = *(RowPointers[J]++);
        Pixels[(height - 1 - I) * width + J].RGBA.R = *(RowPointers[J]++);
    }
}
std::fclose(hFile);
png_destroy_read_struct(&PngPointer, &InfoPointer, nullptr);

我做错了什么?我怎样才能得到PNG的像素并将它们上下颠倒?我对位图使用了相同的技术,但PNG就是不起作用:l

Pixels[(height - 1 - I) * width + J].RGBA.B = *(RowPointers[J]++);

索引RowPointers通过I代替?