我想把HEIC文件转换成JPEG格式。所以我安装了libheif库:
我克隆了https://github.com/strukturag/libheif
./autogen.sh
./configure
make
sudo make install现在已经安装了heif-convert工具,但是当我运行heif-convert input.HEIC output.jpeg时,会得到一个错误:JPEG support has not been compiled in。
我不明白我做错了什么(或者更可能是我忘了做什么),我也没有在互联网上找到任何东西。谁能告诉我怎么解决这个问题吗?
发布于 2021-02-16 17:20:11
正如注释中提到的(谢谢btw),解决方案是安装libjpeg-dev (通过apt)并重新运行配置/make/make。
现在很有魅力了。
https://stackoverflow.com/questions/66228698
复制相似问题