ImageMagic عصایی جاویی در دستان شما
پنجشنبه, ۳ مهر ۱۳۹۳، ۱۲:۴۴ ب.ظ
.
Image Magick یکی از بهترین نرمافزارهای لینوکسیه که تا به حال برای کار با تصاویر دیدم. برنامهای که توسط ابزارهاش میتونه عکس شما رو به فرمت دیگهای تبدیل کنه، برش بزنه، بچرخونه، حاشیهها رو پاک کنه، سایه اضافه کنه و...
ابزارهای خط فرمان این برنامه فوق العاده کاربردی هستند:
[animate • compare • composite • conjure • convert • display • identify • import • mogrify • montage • stream]
کار با این برنامه خیلی ساده و روونه و زود میتونید اون رو یاد بگیرید. در ادامه چند تا دستور برای شروع میگذارم.
نصب ImageMagick
آرچ
# pacman -S imagemagick
فدورا
# yum install imagemagick
اوبونتو
# apt-get install imagemagick
تبدیل فرمت
$ convert pic.png pic.jpg
تبدیل فرمت با تغییر اندازه
$ convert pic.jpg -resize 50% pic.png
تبدیل فرمت به همراه فشرده سازی
$ convert pic.png -quality 90 pic.jpg
تغییر اندازه
$ convert pic.png -resize 100x50 pic.png
چرخاندن
$ convert pic.png -rotate 45 pic.jpg
پردازش دستهای
مثلا چرخاندن تمام تصاویر موجود با زاویه ۹۰ درجه:
$ for file in *.png; do convert $file -rotate 90 rotated-$file; done
لیست دستورات خط فرمان ImageMagick
- animate
- animate an image sequence on any X server.
- compare
- mathematically and visually annotate the difference between an image and its reconstruction.
- composite
- overlap one image over another.
- conjure
- interpret and execute scripts written in the Magick Scripting Language (MSL).
- convert
- convert between image formats as well as resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more.
- display
- display an image or image sequence on any X server.
- identify
- describe the format and characteristics of one or more image files.
- import
- save any visible window on an X server and outputs it as an image file. You can capture a single window, the entire screen, or any rectangular portion of the screen.
- mogrify
- resize an image, blur, crop, despeckle, dither, draw on, flip, join, re-sample, and much more. Mogrify overwrites the original image file, whereas, convert writes to a different image file.
- montage
- create a composite image by combining several separate images. The images are tiled on the composite image optionally adorned with a border, frame, image name, and more.
- stream
- a lightweight tool to stream one or more pixel components of the image or portion of the image to your choice of storage formats. It writes the pixel components as they are read from the input image a row at a time making
stream
desirable when working with large images or when you require raw pixel components.
منبع : +