node.js - nodejs模块jpegicc怎么安装?
问题描述
1、我想安装这个jpegicc模块,但是看了文档还是不明白怎么安装。文档地址
我下载了那个Little CMS,但不懂怎么安装它,弄不懂下面这三行命令是什么意思:
./configuremakemake install
2、我之所以装这个模块,是想将RGB格式的图片转化成CMYK格式的图片,所以找到了这个模块,有谁知道有什么其他的办法转化它们吗?
问题解答
回答1:Just do npm install jpegicc in your project’s root dir. It seems the lib have some dependencies on 'little cms', you need to download the zipfile and follow the command.
make connects the libs to the source and creates the required links and sets it up for the final phase it also parses the human readable to machine readable
make install This is the final phase where the compiler will create the binary files and moves all required files / executable and associated libs to their appropriate directories.
相关文章:
1. html5和Flash对抗是什么情况?2. mac连接阿里云docker集群,已经卡了2天了,求问?3. java - Web开发 - POI导出带有下拉框的Excel和解决下拉中数组过多而产生的异常4. phpadmin的数据库,可以设置自动变化时间的变量吗?就是不需要接收时间数据,自动变化5. docker绑定了nginx端口 外部访问不到6. java - 关于aop在controller不起用的问题7. node.js - vue怎么部署到网站里8. vue ajax请求回来的数据没有渲染到页面9. Echart X坐标轴名称放在左边与Y坐标抽刻度重叠,如何解决?10. vue.js - nginx反向代理location顺序问题
