mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-07 21:48:13 -08:00
enable vipsAffine to use Extend option value and send it to lipvips
this will change the default from the one that lipvips use which is `background` to the ones that bimg use which is `C.VIPS_EXTEND_BLACK` but because the lip add extra 1 or .5 pix the background is considered black anyway so this will not affect anyone but will fix the bug of having border on the right and bottom of some images [ch15924]
This commit is contained in:
parent
daafbf6d97
commit
cd2783eff0
3 changed files with 9 additions and 5 deletions
4
vips.h
4
vips.h
|
|
@ -102,8 +102,8 @@ vips_enable_cache_set_trace() {
|
|||
}
|
||||
|
||||
int
|
||||
vips_affine_interpolator(VipsImage *in, VipsImage **out, double a, double b, double c, double d, VipsInterpolate *interpolator) {
|
||||
return vips_affine(in, out, a, b, c, d, "interpolate", interpolator, NULL);
|
||||
vips_affine_interpolator(VipsImage *in, VipsImage **out, double a, double b, double c, double d, VipsInterpolate *interpolator, int extend) {
|
||||
return vips_affine(in, out, a, b, c, d, "interpolate", interpolator, "extend", extend, NULL);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue