LINUX COMMAND LINE PHOTO & PICTURE EDITING
Page 1 of 1
LINUX COMMAND LINE PHOTO & PICTURE EDITING
Last edited by jamied_uk on 29th April 2016, 03:00; edited 1 time in total
Re: LINUX COMMAND LINE PHOTO & PICTURE EDITING
- Code:
sudo apt-get install -Y imagemagick
- Code:
convert howtogeek.png howtogeek.jpg
- Code:
convert howtogeek.jpg -rotate 90 howtogeek-rotated.jp
- Code:
convert howtogeek.png -quality 95 howtogeek.jpg
- Code:
convert example.png -resize 200×100 example.png
- Code:
convert example.png -resize 200×100! example.png
- Code:
convert example.png -resize 200 example.png
Re: LINUX COMMAND LINE PHOTO & PICTURE EDITING
- Code:
convert howtogeek.jpg -charcoal 2 howtogeek-charcoal.jpg
- Code:
convert howtogeek.jpg -implode 1 howtogeek-imploded.jpg
Re: LINUX COMMAND LINE PHOTO & PICTURE EDITING
bATCH eDITING
- Code:
for file in *.png; do convert $file -rotate 90 rotated-$file; done
Similar topics
» Using Timeshift From Command Line Linux cli
» Covert wav to mp3 in linux command line
» How To Close Linux App From Command Line Or Script
» Command Line Currency Convertion For Linux
» Clone a whole site from Linux Command Line
» Covert wav to mp3 in linux command line
» How To Close Linux App From Command Line Or Script
» Command Line Currency Convertion For Linux
» Clone a whole site from Linux Command Line
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum