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 - 這條聯合sql語句哪里錯了2. webpack - vuejs+java前后臺分離實現及部署問題3. docker start -a dockername 老是卡住,什么情況?4. docker容器呢SSH為什么連不通呢?5. docker鏡像push報錯6. docker網絡端口映射,沒有方便點的操作方法么?7. Docker for Mac 創建的dnsmasq容器連不上/不工作的問題8. docker安裝后出現Cannot connect to the Docker daemon.9. javascript - ios 軟鍵盤彈出header被頂上去 定位失效 求大神解決10. javascript - web移動端 ? 版權這個字在安卓上默認藍色顏色 怎么解決?
