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. lucene - java web 現在做搜索功能,用什么比較好呢2. vue.js - npm run dev報錯了,不知道是不是node.js或者npm installed的版本問題3. 求救一下,用新版的phpstudy,數據庫過段時間會消失是什么情況?4. PHP類屬性聲明?5. javascript - vue引入微信jssdk 配置在哪個生命周期調取接口配置?6. javascript - 這種效果是輪播的效果嗎??沒有思路,求解釋。謝謝大家7. objective-c - ios百度地圖定位問題8. 跟著課件一模一樣的操作使用tp6,出現了錯誤9. php laravel框架模型作用域10. 在應用配置文件 app.php 中找不到’route_check_cache’配置項
