需要将多张图片拼接生成一个40000 * 40000像素的图片,什么语言什么库能够处理这种分辨率的图片呢?
试过用前端Canvas拼接,但是超过10000 10000 图像就挂了。试过用PHP和Python但都没办法创建出40000 40000图像
PHP提示内存超出限制了
ini_set('memory_limit', '5000M');
ini_set('upload_max_filesize', '5000M');
ini_set('post_max_size', '5000M');
ini_set('max_execution_time', 0);
imagecreatetruecolor(40000, 40000);
Python一直没响应
from PIL import Image, ImageDraw, ImageFont, ImageFilter
Image.new('RGB', (40000, 40000), (255, 255, 255)
试试这个看pyvips
https://stackoverflow.com/a/5...