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 查詢身份證號字段值有效的數據2. mysql - 把一個表中的數據count更新到另一個表里?3. 請教使用PDO連接MSSQL數據庫插入是亂碼問題?4. mysql - 分庫分表、分區、讀寫分離 這些都是用在什么場景下 ,會帶來哪些效率或者其他方面的好處5. python - 數據與循環次數對應不上6. python - 爬蟲模擬登錄后,爬取csdn后臺文章列表遇到的問題7. 視頻文件不能播放,怎么辦?8. 黑客 - Python模塊安全權限9. Python爬蟲如何爬取span和span中間的內容并分別存入字典里?10. node.js - nodejs開發中常用的連接mysql的庫
