lilliput
lilliput copied to clipboard
Resize images and animated GIFs in Go
Hi, first off thanks a lot for making & open-sourcing this library! Extremely helpful, very much looking forward to seeing it perform in production! Question: I am assuming it's not...
While playing with lilliput, I ran into the "strangely corrupted images" issue mentioned in [How Discord Resizes 150 Million Images Every Day with Go and C++](https://blog.discordapp.com/how-discord-resizes-150-million-images-every-day-with-go-and-c-c9e98731c65d) on my MacBook Pro...
If you are getting this message, it's because you're on a version of Go that forbids certain Cgo flags due to a recent security issue discovered in Go. Upgrading to...
Rather than call opencv to get libwebp, call libwebp directly. We can make this wrapper pretty easily because libwebp has a nice modern API without a lot of edge cases.
I've got the following error when trying to use lilliput ``` /opt/homebrew/Cellar/[email protected]/1.20.10/libexec/pkg/tool/darwin_arm64/link: running c++ failed: exit status 1 ld: library not found for -lsharpyuv clang: error: linker command failed with...
Simply importing [go-fitz](https://github.com/gen2brain/go-fitz) causes Lilliput to segfault when trying to resize an image. This is unfortunate because I'd like to use these two packages together, and also because I didn't...
The `thumbhash_encoder_create` function includes a null-check on the return value from `new`; however, if `new` were to fail, the default behavior is to throw an `std::bad_alloc` exception rather than return...