Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: ComputerVisionWorks/libvips

Tags

v8.8.2

Toggle v8.8.2's commit message
improve data_length handling in jpg load

libjpeg uses unsigned ints for data length, so we must use size_t
everywhere.

v8.8.1

Toggle v8.8.1's commit message
fix make dist

we'd renamed a file

v8.8.0

Toggle v8.8.0's commit message
faster and more accurate bilinear

go to fixed point earlier in calculation of interpolation coefficients

v8.8.0-rc3

Toggle v8.8.0-rc3's commit message
faster and more accurate bilinear

go to fixed point earlier in calculation of interpolation coefficients

v8.8.0-rc2

Toggle v8.8.0-rc2's commit message
all tested and working

revised formula for in/out/dest-in/dest-out, for vector and scalar paths

see libvips#1301

v8.8.0-rc1

Toggle v8.8.0-rc1's commit message
final update for 8.8.0-rc1

v8.7.4

Toggle v8.7.4's commit message
revise changelog

had Klies' magickload fix in there twice

v8.7.3

Toggle v8.7.3's commit message
fix memleak in magick6load

IM ExceptionInfo were not being freed correctly. This patch
adds a small wrapper function and uses it to allocate and free all IM
exception objects.

Tested with im 6.9 and gm 1.3.

See:

libvips/lua-vips#24

libvips#1203

v8.7.2

Toggle v8.7.2's commit message
Fix up vips_text()

Fixes two issues:

1. vips_text() in autofit mode could set the wrong DPI, since it set the
DPI in its own copy of the variable, but did not do a final update on
the DPI setting that FT uses for rendering.

2. vips_text() in autofit mode allocated a new context each time, rather
than reusing the context for that call. This caused a small memory leak.

See libvips#1174

v8.7.1

Toggle v8.7.1's commit message
fix temp file open

was not auto-deleteing on windows, needs a fallback on linux

see libvips#1155