Merge pull request #737 from kleisauke/fix-shrink-on-load

vips_thumbnail: Fix SVG/PDF input (#735)
This commit is contained in:
John Cupitt 2017-09-14 15:24:42 +01:00 committed by GitHub
commit f4eb1fcf80
1 changed files with 2 additions and 2 deletions

View File

@ -281,9 +281,9 @@ vips_thumbnail_open( VipsThumbnail *thumbnail )
}
else if( vips_isprefix( "VipsForeignLoadPdf", thumbnail->loader ) ||
vips_isprefix( "VipsForeignLoadSvg", thumbnail->loader ) ) {
shrink = vips_thumbnail_calculate_common_shrink( thumbnail,
scale = 1.0 /
vips_thumbnail_calculate_common_shrink( thumbnail,
thumbnail->input_width, thumbnail->input_height );
scale = 1.0 / shrink;
g_info( "loading PDF/SVG with factor %g pre-scale", scale );
}