node.js - nodejs模塊jpegicc怎么安裝?
問(wèn)題描述
1、我想安裝這個(gè)jpegicc模塊,但是看了文檔還是不明白怎么安裝。文檔地址
我下載了那個(gè)Little CMS,但不懂怎么安裝它,弄不懂下面這三行命令是什么意思:
./configuremakemake install
2、我之所以裝這個(gè)模塊,是想將RGB格式的圖片轉(zhuǎn)化成CMYK格式的圖片,所以找到了這個(gè)模塊,有誰(shuí)知道有什么其他的辦法轉(zhuǎn)化它們嗎?
問(wèn)題解答
回答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.
相關(guān)文章:
1. python bottle跑起來(lái)以后,定時(shí)執(zhí)行的任務(wù)為什么每次都重復(fù)(多)執(zhí)行一次?2. javascript - ios返回不執(zhí)行js怎么解決?3. javascript - vue2如何獲取v-model變量名4. node.js - vue中 post數(shù)據(jù)遇到問(wèn)題5. 前端 - 誰(shuí)來(lái)解釋下這兩個(gè) CSS selector 區(qū)別6. javascript - 求幫助 , ATOM不顯示界面!!!!7. html5 - HTML代碼中的文字亂碼是怎么回事?8. javascript - angular使從elastichearch中取出的文本高亮顯示,如圖所示9. mysql - 分庫(kù)分表、分區(qū)、讀寫分離 這些都是用在什么場(chǎng)景下 ,會(huì)帶來(lái)哪些效率或者其他方面的好處10. python - 爬蟲模擬登錄后,爬取csdn后臺(tái)文章列表遇到的問(wèn)題
