質問

I have the image data as QByteArray. I want to load the texture of this image from that data using libpng. Everywhere I see reading the image texture from the file or from input stream. But how can I load the image from the QByteArray?? Thanks.

役に立ちましたか?

解決

I found what I wanted in here The png_read_from_mem (png_structp png_ptr, png_bytep data, png_size_t length)' method was exactly what I was looking for. It reads data which isunsigned char*`.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top