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. docker不顯示端口映射呢?2. java - 請問在main方法中寫成對象名.屬性()并賦值,與直接參參數賦值輸錯誤是什么原因?3. MySQL數據庫中文亂碼的原因4. docker - 各位電腦上有多少個容器啊?容器一多,自己都搞混了,咋辦呢?5. macos - mac下docker如何設置代理6. android studio總是在processes running好久7. 關docker hub上有些鏡像的tag被標記““This image has vulnerabilities””8. mysql - 新浪微博中的關注功能是如何設計表結構的?9. docker-compose 為何找不到配置文件?10. docker gitlab 如何git clone?
