From 149445500e2e74e18e1e36766ba5017c1ea9f5c7 Mon Sep 17 00:00:00 2001 From: tavo-wasd Date: Mon, 13 Nov 2023 21:23:57 -0600 Subject: [PATCH] new snippet --- content/snippets/magick-rmbg.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 content/snippets/magick-rmbg.md diff --git a/content/snippets/magick-rmbg.md b/content/snippets/magick-rmbg.md new file mode 100644 index 0000000..1fbd5dd --- /dev/null +++ b/content/snippets/magick-rmbg.md @@ -0,0 +1,10 @@ +--- +title: Quitar fondo de una imagen con image-magick +date: 2023-11-13 +--- + +`white` podría ser también un hex code. + +```shell +convert -transparent white -fuzz 10% image.jpg image-transparent.png +```