Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10907 from shuffle2/pngend
SavePNG: make sure to finalize image file
  • Loading branch information
AdmiralCurtiss committed Jul 28, 2022
2 parents e10d662 + 25462f4 commit 000c9c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Core/Common/Image.cpp
Expand Up @@ -95,8 +95,11 @@ bool SavePNG(const std::string& path, const u8* input, ImageByteFormat format, u
if (spng_set_ihdr(ctx.get(), &ihdr))
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;
}
for (u32 row = 0; row < height; row++)
{
const int err = spng_encode_row(ctx.get(), &input[row * stride], stride);
Expand Down

0 comments on commit 000c9c7

Please sign in to comment.