SavePNG: make sure to finalize image file
This commit is contained in:
parent
1ea0c7752e
commit
25462f4a3c
|
@ -95,8 +95,11 @@ bool SavePNG(const std::string& path, const u8* input, ImageByteFormat format, u
|
||||||
if (spng_set_ihdr(ctx.get(), &ihdr))
|
if (spng_set_ihdr(ctx.get(), &ihdr))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (spng_encode_image(ctx.get(), nullptr, 0, SPNG_FMT_PNG, SPNG_ENCODE_PROGRESSIVE))
|
if (spng_encode_image(ctx.get(), nullptr, 0, SPNG_FMT_PNG,
|
||||||
|
SPNG_ENCODE_PROGRESSIVE | SPNG_ENCODE_FINALIZE))
|
||||||
|
{
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
for (u32 row = 0; row < height; row++)
|
for (u32 row = 0; row < height; row++)
|
||||||
{
|
{
|
||||||
const int err = spng_encode_row(ctx.get(), &input[row * stride], stride);
|
const int err = spng_encode_row(ctx.get(), &input[row * stride], stride);
|
||||||
|
|
Loading…
Reference in New Issue