Image to PDF has a very low file size limit
The conversion of images to pdf fails if the collective size of uploads is greater than 2MB
How does this 'fail' for you?
How does this 'fail' for you?
It returns a 413 code everytime the collective size is greater that 2MB
This shouldn't be unique to any operation. Are you running it behind nginx or anything?
If you are using nginx as a reverse proxy then add these options to your config. Then tweak to your needs
proxy_buffering off;
client_max_body_size 0;
proxy_request_buffering off;
Hello, I am getting the same issue, any images above 2mb and the 'Image to PDF' fails.
Error : Internal Server Error:Cannot invoke "java.awt.image.BufferedImage.getColorModel()" because "image" is null
I am running this currently in Docker, accessing it directly.
Is there something that I need to put in the docker compose config maybe? to increase this limit
can you post your full log?
Closing due to no comments and can not repeat