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 +```