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. mysql中的collate关键字是什么意思?2. python - django 按日归档统计订单求解3. javascript - jQuery中live事件在移动微信端下没有效果;代码如下4. python - django orm 过滤日期为当天日期的数据5. Android "1"=="1" 到底是true还是false6. android-studio - Android Studio 运行项目的时候一堆警告,跑步起来!?7. angular.js - 指令下的指令 面对上级指令ng-repeat的时候 ng-controller会出现多次的问题?8. css - 如何使用 vue transition 实现 ios 按钮一样的平滑切换效果9. javascript - 一个JS的算法,求大神解答10. 热切期待朱老师的回复,网页视频在线播放器插件配置错误
