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. php - mysql 模糊搜索问题2. 求救一下,用新版的phpstudy,数据库过段时间会消失是什么情况?3. python没入门,请教一个问题4. javascript - 我的站点貌似被别人克隆了, google 搜索特定文章,除了域名不一样,其他的都一样,如何解决?5. javascript - 在 vue里面用import引入js文件,结果为undefined6. 小程序怎么加外链,语句怎么写!求救新手,开文档没发现7. php如何获取访问者路由器的mac地址8. javascript - js setTimeout在双重for循环中如何使用?9. html5 - input type=’file’ 上传获取的fileList对象怎么存储于浏览器?10. html - 爬虫时出现“DNS lookup failed”,打开网页却没问题,这是什么情况?
