2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/convert

33 lines
1.1 KiB
Plaintext
Raw Normal View History

# Resize an image to a fixed width and proportional height:
2017-05-21 19:26:32 +00:00
convert original-image.jpg -resize 100x converted-image.jpg
# Resize an image to a fixed height and proportional width:
2017-05-21 19:26:32 +00:00
convert original-image.jpg -resize x100 converted-image.jpg
# Resize an image to a fixed width and height:
2017-05-21 19:26:32 +00:00
convert original-image.jpg -resize 100x100 converted-image.jpg
# Resize an image and simultaneously change its file type:
2017-05-21 19:26:32 +00:00
convert original-image.jpg -resize 100x converted-image.png
# Resize all of the images within a directory, using a for loop:
for file in original/image/path/*; do
convert "$file" -resize 150 converted/image/path/"$file"
2017-05-21 19:26:32 +00:00
done
# Make text annotation (text = Flower)
2017-05-21 19:26:32 +00:00
convert flower.jpg -font courier -fill white -pointsize 20 -annotate +50+50 'Flower' flower_annotate1.jpg
# Crop an image
convert flower.jpg -crop 128×128+50+50 flower_crop.jpg
# Rotate an image
convert flower.jpg -rotate 45 flower_rotate45.jpg
# Add a border
convert -border 1x1 -bordercolor "#FFFFFF" image.png new-image.png
# Convert PNG to JPEG (with 70% quality)
convert -quality 70 image.png new_image.jpg