pngsave: ensure 8-bit palette images can be created (#3031)

This commit is contained in:
Lovell Fuller 2022-09-08 09:10:02 +01:00 committed by GitHub
parent fc01771454
commit b58b7bd416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -145,9 +145,9 @@ vips_foreign_save_png_build( VipsObject *object )
png->bitdepth < 8 )
png->palette = TRUE;
/* Disable palettization for >8 bit save.
*/
if( png->bitdepth >= 8 )
/* Disable palettization for >8 bit save.
*/
if( png->bitdepth > 8 )
png->palette = FALSE;
if( vips__png_write_target( in, png->target,

View File

@ -613,9 +613,9 @@ vips_foreign_save_spng_build( VipsObject *object )
spng->bitdepth < 8 )
spng->palette = TRUE;
/* Disable palettization for >8 bit save.
*/
if( spng->bitdepth >= 8 )
/* Disable palettization for >8 bit save.
*/
if( spng->bitdepth > 8 )
spng->palette = FALSE;
if( vips_foreign_save_spng_write( spng, in ) ) {