imagemagick 是乙個開源的圖形庫,通過命令列來操作圖形,功能強大,
支援 windows、mac、linux系統,可以用來寫指令碼批量處理圖
片,也提供有c++,python等語言的開發庫。
轉換格式
convert test.png dst.jpg
縮放
convert -resize 50% test.png dst.png
旋轉
convert -rotate -90 test.png dst.png
擷取
convert -crop 30x30+10+10 test.png dst.png
合併
convert -size 512x512 xc:none test.png -geometry +10+10 -composite dst.png
模糊
convert -gaussian-blur 2x6 test.png dst.png
convert -blur 2x6 test.png dst.png
銳化
convert -sharpen 3x3 test.png dst.png
月夜
convert -blue-shift 1.5 test.png dst.png
灰度
convert -colorspace gray test.png dst.png
通道
convert -channel r -separate test.png dst.png
ImageMagick漏洞演示
centos安裝 wget tar zvxf imagemagick 6.4.0 0.tar.gz cd imagemagick 6.4.0 0 configure prefix usr locate imagemagick 6.4.0 with quantum depth 8 make make ...
ImageMagick使用小結
檢視是否安裝imagemagick sudo apt list grep imagemagick 安裝imagemagick sudo apt get install imagemagickimagemagick manual 識別1.png identify 1.png 1.png的詳細資訊 id...
ImageMagick之convert命令大全
強大的convert命令 convert命令可以用來轉換影象的格式,支援jpg,bmp,pcx,gif,png,tiff,xpm和xwd等型別,下面舉幾個例子 convert jpg png 將jpeg轉成png檔案 convert gif bmp 將gif轉換成bmp影象 convert tiff...