LINUX How to convert image with Imagemagick

Convert ai to pdf,gif,jpg
mogrify -crop 2000x2000+190+725 +repage -colorspace RGB -density 300 -format jpg *.ai
mogrify -crop 2000x2000+190+725 +repage -colorspace RGB -density 300 -format png *.ai
mogrify -crop 2000x2000+190+725 +repage -colorspace RGB -density 300 -format pdf *.ai
Convert all *jpg to pdf
mogrify -format pdf *.jpg
Resize Image
mogrify -resize 575x -crop 480x480+45+160 +repage -colorspace RGB -density 300 -format gif *.ai

Comments

Popular posts from this blog

LINUX Move and copy files using SSH

PHP Predefined Variables

Java : Variables Declaring