John Cupitt
John Cupitt
Set `hspacing` and `vspascing` to the step between tiles. If each frame is 500x500 pixels, for example, set these to 400 and you'll have 100 pixels of overlap. Set `across`...
> perhaps we should make vips7compat.h part of vips.h unless building with -Ddeprecated=false? I agree, this sounds sensible.
I suppose we could also just remove the `_LAST` members and do it at runtime instead. We could have some compatibility defines which fetched the `n_values` field: https://docs.gtk.org/gobject/struct.EnumClass.html We wouldn't...
I think we'd need something for uses like: ```C if (mode[i] < 0 || mode[i] >= VIPS_BLEND_MODE_LAST) { ``` Maybe: ```C // tiny utility func GEnumClass *vips__get_enum_class(const char *class_name); #define...
Great! This is a good cleanup.
Hi @stumpylog, It sounds like a library version conflict, you'd need to give more details about how you made the runtime. Can you make a dockerfile that reproduces this issue,...
You can have issues if you mix fork() and threads, could that be it? You need to not do any image processing outside the request handler. This should work: 1....
You could also try reordering your imports and see if that makes a difference.
I've just found a [slightly similar issue in rails](https://github.com/brandoncc/heroku-buildpack-vips/issues/41) caused by a clash between pdfium and libheif. Could that be it? What do you see for `vips --vips-config`?
Thanks! But it's not pdfium :(