John Cupitt
John Cupitt
libvips also has adaptive convolution resample as well as fixed window interpolators -- it has two completely different paths for the two systems. I think that comment went in in...
It's just historical: vips used to just have fixed-window interpolators, and the adaptive kernel stuff was added in 8.3 (I think). I've swapped everything to adaptive, I think.
Hello @Mamikon95, Sorry, I've never tried building on Windows. There's a config file, so you probably just have do build it with pecl.
I don't have time to do this myself, but I'd be very happy to help. Another solution would be to dump php-vips-ext and switch to ffi instead. That would remove...
Hello Christian, the `vips_cache_set_*()` functions set how operation cache trimming is done, they don't set the maximum amount of memory that libvips can use. libvips image are immutable, meaning you...
You could try `vips_cache_set_max(0);` to turn off the operation cache and see if that changes memory behaviour significantly. As long as memory use is not rising, I think I would...
Hello Christian, I tried a soak test here: ```php #!/usr/bin/env php
Oh, I tried like this as well: ```php vips_cache_set_max(0); $data_in = file_get_contents($argv[1]); for ($i = 0; $i < 10000; $i++) { echo "loop " . $i . " ... \n";...
Sorry, I don't know. Does `bin/pickle install vips` not work? Yes, you can build from source, but that needs pear. Someone will need to dig into php 7.4 and see...
Hi @jarodium, I'm sorry you're having trouble. Could you open a new issue, please? This one is for php 7.4 install problems.