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. 网页爬虫 - Python小白用Scrapy爬虫返回的是空元素,请问各位大神哪里出了问题?2. debian - docker依赖的aufs-tools源码哪里可以找到啊?3. 关docker hub上有些镜像的tag被标记““This image has vulnerabilities””4. dockerfile - [docker build image失败- npm install]5. 在windows下安装docker Toolbox 启动Docker Quickstart Terminal 失败!6. MySQL部署单机多实例无法初始化数据库7. javascript - QQ第三方登录的问题8. mysql - 如何在数据库里优化 汉明距离 查询?9. python3.x - 如何在云服务器上运行python脚本?10. python flask做的文件系统上传系统,路径没错,文件列表加载不出来,error 10053
