diff --git a/vision/imagemagick.md b/vision/imagemagick.md
index 1456ea4..3145886 100644
--- a/vision/imagemagick.md
+++ b/vision/imagemagick.md
@@ -6,35 +6,35 @@ tags: [ "Documentation", "Vision" ]
Convert jpg to png.
```bash
-convert image.jpg image.png
+magick image.jpg image.png
```
```bash
-convert image.jpg -quality 50 image.jpg
+magick image.jpg -quality 50 image.jpg
```
'Quality' must be from 1 to 100.
```bash
-convert -resize 50% image.jpg image2.jpg
+magick -resize 50% image.jpg image2.jpg
```
Resizing only changes jpegs. Change a png with:
```bash
-convert input.png png8:out.png
+magick input.png png8:out.png
```
# Invert Colours
```bash
-convert input.jpg output.jpg -negate
+magick input.jpg output.jpg -negate
```
# Make Images Smaller
```bash
-convert image.jpg -resize 25% output.jpg
+magick image.jpg -resize 25% output.jpg
```
@@ -43,13 +43,13 @@ convert image.jpg -resize 25% output.jpg
This is generally used for transparent images.
```bash
-convert -trim image.png output.png
+magick -trim image.png output.png
```
Make the white of an image transparent.
```bash
-convert -transparent white -fuzz 10% input.png output.png
+magick -transparent white -fuzz 10% input.png output.png
```
The 'fuzz' option tells the computer that 'close to white' is fine. You might want to use 20% or higher fuzz.
@@ -58,7 +58,7 @@ The 'fuzz' option tells the computer that 'close to white' is fine. You might w
## Dropshadow
```bash
-`convert \( +clone -background black -shadow 50x8+0+5 \) +swap -background none -layers merge +repage