Skip to content

Commit 79644b1

Browse files
committed
Update README.md with information about image resize
1 parent e389663 commit 79644b1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,19 @@ Github page for my account hosted at https://ceesbos.nl
66
```shell
77
git clone --recurse-submodules --depth 1 [email protected]:cbos/cbos.github.io.git
88
```
9+
10+
11+
# Image resize with ImageMagick
12+
13+
Documentation about convert: https://imagemagick.org/script/convert.php
14+
15+
```shell
16+
17+
# https://imagemagick.org/script/convert.php
18+
#Resize
19+
magick convert image.png -resize 1200 image_resized.png
20+
magick convert image.png -resize 50% image_resized.png
21+
22+
# Rotate
23+
magick convert unconference2.jpg -distort SRT -90 unconf_rotate.jpg
24+
```

0 commit comments

Comments
 (0)