Merge pull request #959 from felixbuenemann/fix-png-filters

Fix wrong value for VIPS_FOREIGN_PNG_FILTER_ALL
This commit is contained in:
John Cupitt 2018-05-04 07:59:01 +01:00 committed by GitHub
commit 88b3644592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -518,7 +518,7 @@ typedef enum /*< flags >*/ {
VIPS_FOREIGN_PNG_FILTER_UP = 0x20,
VIPS_FOREIGN_PNG_FILTER_AVG = 0x40,
VIPS_FOREIGN_PNG_FILTER_PAETH = 0x80,
VIPS_FOREIGN_PNG_FILTER_ALL = 0xEA
VIPS_FOREIGN_PNG_FILTER_ALL = 0xF8
} VipsForeignPngFilter;
int vips_pngload( const char *filename, VipsImage **out, ... )