Merge branch '8.10'
This commit is contained in:
commit
01bbef36d5
@ -13,6 +13,7 @@
|
|||||||
- dzsave in iiif mode could set info.json dimensions off by one [Linden6]
|
- dzsave in iiif mode could set info.json dimensions off by one [Linden6]
|
||||||
- pdfload allows dpi and scale to both be set [le0daniel]
|
- pdfload allows dpi and scale to both be set [le0daniel]
|
||||||
- allow gaussblur sigma zero, meaning no blur
|
- allow gaussblur sigma zero, meaning no blur
|
||||||
|
- better heif signature detection [lovell]
|
||||||
|
|
||||||
9/8/20 started 8.10.1
|
9/8/20 started 8.10.1
|
||||||
- fix markdown -> xml conversion in doc generation
|
- fix markdown -> xml conversion in doc generation
|
||||||
|
@ -254,7 +254,7 @@ static const char *heif_magic[] = {
|
|||||||
*
|
*
|
||||||
* enum heif_filetype_result result = heif_check_filetype( buf, 12 );
|
* enum heif_filetype_result result = heif_check_filetype( buf, 12 );
|
||||||
*
|
*
|
||||||
* but it's very conservative and seems to be missing some of the Noka hief
|
* but it's very conservative and seems to be missing some of the Nokia hief
|
||||||
* types.
|
* types.
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
@ -266,7 +266,8 @@ vips_foreign_load_heif_is_a( const char *buf, int len )
|
|||||||
if( len >= 12 ) {
|
if( len >= 12 ) {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if ( memcmp( buf, iso, 4 ) != 0 && memcmp( buf, three_gp, 4 ) != 0 )
|
if( memcmp( buf, iso, 4 ) != 0 &&
|
||||||
|
memcmp( buf, three_gp, 4 ) != 0 )
|
||||||
return ( 0 );
|
return ( 0 );
|
||||||
|
|
||||||
for( i = 0; i < VIPS_NUMBER( heif_magic ); i++ )
|
for( i = 0; i < VIPS_NUMBER( heif_magic ); i++ )
|
||||||
|
Loading…
Reference in New Issue
Block a user