From ff3a3d2556a41156566febcec02c69ac2944819b Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Mon, 18 Sep 2023 23:44:39 +0200 Subject: [PATCH] spelling --- vision/imagemagick.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/vision/imagemagick.md b/vision/imagemagick.md index 7f480e3..1456ea4 100644 --- a/vision/imagemagick.md +++ b/vision/imagemagick.md @@ -2,7 +2,6 @@ title: "imagemagick" tags: [ "Documentation", "Vision" ] --- -[Source](https://lxlinux.com/imagemagick.html) Convert jpg to png. @@ -41,13 +40,13 @@ convert image.jpg -resize 25% output.jpg # Trim images to border -This is generally used for transparrent images. +This is generally used for transparent images. ```bash convert -trim image.png output.png ``` -Make the white of an image transparrent. +Make the white of an image transparent. ```bash convert -transparent white -fuzz 10% input.png output.png @@ -101,7 +100,7 @@ See your installed fonts: convert -list font ``` -Make na image showing day of the week: +Make an image showing day of the week: ```bash convert -fill blue -font Sauce-Code-Pro-Semibold-Nerd-Font-Complete-Mono -gravity center -pointsize 79 label:$(date +%A) day.png