John Cupitt
John Cupitt
Hi @lanyusan, It depends what you're trying to do. You can composite many images in a single `composite`, perhaps that would do what you need? If the images are in...
Hello, you need to give more information. - libvips version - pyvips version - platform - complete, runnable code sample that shows the problem - any images the program needs...
OK, this should be fixed (again) in git master and therefore in 8.9. Instead of: ```python image = pyvips.Image.sharpen(image, sigma=1, y2=2, y3=2, m1=0, m2=0.9) ``` You can just write: ```python...
libvips doesn't ask for libfreetype directly (it asks for pangoft2 for text rendering), so I think this must be a bug in one of the packages that libvips is using....
Try `--without-magick` too. If you can make a dockerfile which reproduces this problem, I could check.
That's great! I guess the imagemagick package has a bug. Imagemagick is used to load formats like BMP and ICO, and to save GIF, so there's no effect on speed.
Hi @acscott, I would guess your libvips is too old. You need libvips 8.12 or later for the hyperbolic trig functions.
Sorry, I don't know. Some kind of install problem? Perhaps the fonts are different? I'd need to be able to reproduce the problem to diagnose it.
Hello @rajasagashe, You're right, the latest macos update seems to have broken pyvips. Those errors are coming from code generated by cffi. I'll see if I can pin down the...
Yes, I've removed the old `vips_free` declaration and fixed up some other stuff. It's working on my mac now. I'll push a new version.