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. angular.js - angular2 有什么cool的loading组件么?2. javascript - vue-cli怎么根据后端接口服务器不同 build不同接口代码?3. docker api 开发的端口怎么获取?4. ubuntu - elasticsearch-head插件安装后,启动问题!5. 从Spring MVC XML文件移至javaconfig我的数据库XML文件真的让我迷茫了6. mysql 一个sql 返回多个总数7. angular.js - angularjs ng-class指令改变ng-click点击的class属性失效8. java - SpringBoot 添加自定义的拦截器,却不调用9. javascript - 前端开发 本地静态文件频繁修改,预览时的缓存怎么解决?10. angular.js - angularjs中的$compile怎么理解?
