We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e389663 commit 79644b1Copy full SHA for 79644b1
README.md
@@ -6,3 +6,19 @@ Github page for my account hosted at https://ceesbos.nl
6
```shell
7
git clone --recurse-submodules --depth 1 [email protected]:cbos/cbos.github.io.git
8
```
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