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. html - 特殊样式按钮 点击按下去要有凹下和弹起的效果2. angular.js - ng-grid 和tabset一起用时,grid width默认特别小3. Java 在内部类中访问变量。需要宣布为最终4. android有ldpi, mdpi, hdpi, xhdpi这些drawable文件夹,系统是依据什么去选择的?5. angular.js - angularjs 与requirejs集成6. Java中的多人游戏。将客户端(玩家)连接到其他客户端创建的游戏7. android - textview在获取网络数据填充之后,占据的是默认的大小,点击之后才会包裹内容。8. html5 - 在一个页面中 初始了两个swiper 不知道哪里错了 一直不对9. mysql中 when then 的优化10. html - CSS3能写出这种环状吗,不是环形进度条?
