From 3bfadc860e6d23bd9ac967f1a2d4011f7ee0985c Mon Sep 17 00:00:00 2001 From: Asocia Date: Sun, 26 Dec 2021 15:51:47 +0300 Subject: [PATCH] TIL: Manipulating images --- command-line-utils/manipulating-images.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 command-line-utils/manipulating-images.md diff --git a/command-line-utils/manipulating-images.md b/command-line-utils/manipulating-images.md new file mode 100644 index 0000000..942f9bc --- /dev/null +++ b/command-line-utils/manipulating-images.md @@ -0,0 +1,7 @@ +You can use `convert` to crop or resize your images. Let's say you have an image with size of `800x600` and you want to crop 100 px from left, 100 px from right and then resize it to `200x200`. Here are the commands you would run: + +```bash +convert original.jpg -crop 700x600+100+0 cropped.jpg # Crop from left. 100+0 is offset from top left corner. +convert cropped.jpg -crop 600x600+0+0 cropped.jpg +convert cropped.jpg -resize 200x200 final.jpg +```