2010年9月16日

免費轉圖、合併圖:ImageMagick

ImageMagick  官方網站:http://www.imagemagick.org/

免費軟體,可轉換圖檔格式、合併TIF成PDF、重疊圖檔(ex.浮水印)、圖上加字或加圖、裁切旋轉加邊框...、取得圖檔資訊等。
Windows、Linux 上均可安裝,具命令列模式,可與多種程式語言結合使用。

參考網址:
功能    http://ebeach.javaeye.com/blog/251082
命令簡述    http://pjluo.javaeye.com/blog/98056

命令摘要:

轉換圖檔格式
convert 1.jpg 1_new.png

合併檔案 ex.將所有TIF檔合併為一個all.pdf檔案
convert *.tif  all.pdf

若合併後產生反色現象(ex.原為白底黑字,合併後成黑底白字),可加參數 -negate
convert -negate *.tif all.pdf

縮小圖片 ex.將圖片縮成80x60, icon的大小
convert -sample 80x60 big.jpg thumb.jpg

convert -resize 500x500 ori.jpg output.jpg
(會以寬度為主,維持原圖比例縮小)

以百分比縮小圖片
convert  -sample 30%x30% big.jpg thumb.jpg

加浮水印
    格式:composite 浮水印參數 透明度 浮水印位置參數 浮水印位置 要加的浮水印圖檔 被加的圖檔 合成後的圖
composite -watermark 50% -gravity south watermark.gif 00001.jpg all.jpg
      -dissolve        浮水印圖檔維持原色 
      -watermark    浮水印圖檔變黑白
      -gravity可用選項:NorthWest, North, NorthEast, West, Center, East, SouthWest, South, SouthEast

旋轉 Rotate
convert -rotate 90 image.tiff output.tiff

裁切 flip
convert -flip image.tiff output.tiff

把圖片變黑白
convert -monochrome foo.png bar.png

在影像加上文字
convert -font helvetica -fill yellow -pointsize 25 -draw 'text 100,250"ShimanDame" ' image.png  imagewithtext.png

加邊框
convert -bordercolor blue -border 5x5 pic001.png border001.png

沒有留言:

張貼留言