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. android - rxjava merge 返回Object對象數據如何緩存2. docker 下面創建的IMAGE 他們的 ID 一樣?這個是怎么回事????3. angular.js - ionic2 瀏覽器跨域問題4. python - Scrapy存在內存泄漏的問題。5. javascript - 螞蟻金服里的react Modal方法,是怎么把元素插入到頁面最后的6. mysql 一個sql 返回多個總數7. 如何用筆記本上的apache做微信開發的服務器8. docker-compose中volumes的問題9. CSS3 畫如下圖形10. java - 三位二進制表示8進制,四位二進制表示16進制,那么多少二進制表示10進制呢?
