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. android - 哪位大神知道java后台的api接口的对象传到前端后输入日期报错,是什么情况?求大神指点2. mac里的docker如何命令行开启呢?3. css3: dl中如何让dr和dt视觉上显示到同一行?4. javascript - 如何向localStorage上的数组push数据5. javascript - hbuilder做的app在边看边改模式页面能跳转,为什么到了手机端就不能跳转?6. css - jq有无现成函数改变rotateX/Y的deg7. vue添加锚点,实现滚动页面时锚点添加相应的class操作8. 求救一下,用新版的phpstudy,数据库过段时间会消失是什么情况?9. ddos - apache日志很多其它网址,什么情况?10. javascript - node引入文件路径中的@是什么意思?
