我想建立一个网站的所有图像处理服务器。
我在Nodejs中有一个使用Sharp的脚本,我想用最好的库来设置服务器,以最大限度地利用libvips的能力。
我想得到安装它的帮助。
我可以使用以下命令安装libvips-dev:
apt-get install libvips-dev但是它没有mozjpeg和libimagequant。
发布于 2019-03-30 23:39:01
要通过apt安装debian,您需要有libimagequant (Buster, Bullseye or Sid)。
在Ubuntu上,该软件包仅适用于Ubuntu disco 19.04 and eoan 19.10。
sudo apt install libimagequant-devthis git repository上提供了mozjpeg包,以及构建说明和要求:building.md
https://stackoverflow.com/questions/55432780
复制相似问题