more vipsthumbnail fixes
- handle CMYK images - use unbuffered mode, we have a cache already - don't try to anti-alias on upscale
This commit is contained in:
parent
ed3c56fcbf
commit
ce428ffa94
1
TODO
1
TODO
@ -1,3 +1,4 @@
|
|||||||
|
- can we pick the vipsthumbnail int shrink factor more intelligently?
|
||||||
|
|
||||||
- vips_object_unref_outputs() needs docs ... bindings will need it
|
- vips_object_unref_outputs() needs docs ... bindings will need it
|
||||||
|
|
||||||
|
@ -56,6 +56,8 @@
|
|||||||
* enough
|
* enough
|
||||||
* - default to bicubic if available
|
* - default to bicubic if available
|
||||||
* - add an anti-alias filter between shrink and affine
|
* - add an anti-alias filter between shrink and affine
|
||||||
|
* - support CMYK
|
||||||
|
* - use SEQ_UNBUF for a memory saving
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
@ -317,7 +319,7 @@ thumbnail_open( VipsObject *process, const char *filename )
|
|||||||
jpegshrink );
|
jpegshrink );
|
||||||
|
|
||||||
if( !(im = vips_image_new_from_file( filename,
|
if( !(im = vips_image_new_from_file( filename,
|
||||||
"access", VIPS_ACCESS_SEQUENTIAL,
|
"access", VIPS_ACCESS_SEQUENTIAL_UNBUFFERED,
|
||||||
"shrink", jpegshrink,
|
"shrink", jpegshrink,
|
||||||
NULL )) )
|
NULL )) )
|
||||||
return( NULL );
|
return( NULL );
|
||||||
@ -326,7 +328,7 @@ thumbnail_open( VipsObject *process, const char *filename )
|
|||||||
/* All other formats.
|
/* All other formats.
|
||||||
*/
|
*/
|
||||||
if( !(im = vips_image_new_from_file( filename,
|
if( !(im = vips_image_new_from_file( filename,
|
||||||
"access", VIPS_ACCESS_SEQUENTIAL,
|
"access", VIPS_ACCESS_SEQUENTIAL_UNBUFFERED,
|
||||||
NULL )) )
|
NULL )) )
|
||||||
return( NULL );
|
return( NULL );
|
||||||
}
|
}
|
||||||
@ -345,7 +347,7 @@ thumbnail_interpolator( VipsObject *process, VipsImage *in )
|
|||||||
calculate_shrink( in, &residual, NULL );
|
calculate_shrink( in, &residual, NULL );
|
||||||
|
|
||||||
/* For images smaller than the thumbnail, we upscale with nearest
|
/* For images smaller than the thumbnail, we upscale with nearest
|
||||||
* neighbor. Otherwise we makes thumbnails that look fuzzy and awful.
|
* neighbor. Otherwise we make thumbnails that look fuzzy and awful.
|
||||||
*/
|
*/
|
||||||
if( !(interp = VIPS_INTERPOLATE( vips_object_new_from_string(
|
if( !(interp = VIPS_INTERPOLATE( vips_object_new_from_string(
|
||||||
g_type_class_ref( VIPS_TYPE_INTERPOLATE ),
|
g_type_class_ref( VIPS_TYPE_INTERPOLATE ),
|
||||||
@ -392,8 +394,6 @@ thumbnail_shrink( VipsObject *process, VipsImage *in,
|
|||||||
VipsImage **t = (VipsImage **) vips_object_local_array( process, 10 );
|
VipsImage **t = (VipsImage **) vips_object_local_array( process, 10 );
|
||||||
VipsInterpretation interpretation = linear_processing ?
|
VipsInterpretation interpretation = linear_processing ?
|
||||||
VIPS_INTERPRETATION_XYZ : VIPS_INTERPRETATION_sRGB;
|
VIPS_INTERPRETATION_XYZ : VIPS_INTERPRETATION_sRGB;
|
||||||
const int window_size =
|
|
||||||
interp ? vips_interpolate_get_window_size( interp ) : 2;
|
|
||||||
|
|
||||||
int shrink;
|
int shrink;
|
||||||
double residual;
|
double residual;
|
||||||
@ -415,12 +415,16 @@ thumbnail_shrink( VipsObject *process, VipsImage *in,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* In linear mode, we import right at the start.
|
/* In linear mode, we import right at the start.
|
||||||
|
*
|
||||||
|
* We also have to import the whole image if it's CMYK, since
|
||||||
|
* vips_colourspace() (see below) doesn't know about CMYK.
|
||||||
*
|
*
|
||||||
* This is only going to work for images in device space. If you have
|
* This is only going to work for images in device space. If you have
|
||||||
* an image in PCS which also has an attached profile, strange things
|
* an image in PCS which also has an attached profile, strange things
|
||||||
* will happen.
|
* will happen.
|
||||||
*/
|
*/
|
||||||
if( linear_processing &&
|
if( (linear_processing ||
|
||||||
|
in->Type == VIPS_INTERPRETATION_CMYK) &&
|
||||||
in->Coding == VIPS_CODING_NONE &&
|
in->Coding == VIPS_CODING_NONE &&
|
||||||
(in->BandFmt == VIPS_FORMAT_UCHAR ||
|
(in->BandFmt == VIPS_FORMAT_UCHAR ||
|
||||||
in->BandFmt == VIPS_FORMAT_USHORT) &&
|
in->BandFmt == VIPS_FORMAT_USHORT) &&
|
||||||
@ -498,7 +502,8 @@ thumbnail_shrink( VipsObject *process, VipsImage *in,
|
|||||||
* shrinks, blur radius 2 for x2.5 shrinks and above, etc.
|
* shrinks, blur radius 2 for x2.5 shrinks and above, etc.
|
||||||
*/
|
*/
|
||||||
sigma = ((1.0 / residual) - 0.5) / 1.5;
|
sigma = ((1.0 / residual) - 0.5) / 1.5;
|
||||||
if( sigma > 0.1 ) {
|
if( residual < 1.0 &&
|
||||||
|
sigma > 0.1 ) {
|
||||||
if( vips_gaussmat( &t[9], sigma, 0.2,
|
if( vips_gaussmat( &t[9], sigma, 0.2,
|
||||||
"separable", TRUE,
|
"separable", TRUE,
|
||||||
"integer", TRUE,
|
"integer", TRUE,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user