|
Hello Team, i reduced the size of a photo in a test series in incremental steps. Everything was fine below 9 MB. If this limit is intentional, it would be too low for most photos taken on smartphones and other devices. Best regards |
Answered by
micbar
Jul 17, 2026
Replies: 2 comments 1 reply
|
The problem is thumbnails service. It is pain in the ass. Add this to and ths to yml I did that, and it magically started working. |
1 reply
|
Many thanks, yes, that’s exactly it. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why? The limitation is intentional and can be changed by the config.
THUMBNAILS_MAX_INPUT_WIDTH=90000
THUMBNAILS_MAX_INPUT_HEIGHT=90000
THUMBNAILS_MAX_INPUT_IMAGE_FILE_SIZE=50000000
The technology behind the thumbnails service is libvips, which performs quite well https://github.com/libvips/libvips/wiki/Speed-and-memory-use
You always have to limit stuff, but the config can be changed.