diff --git a/awesome-software/imagemagick/README.md b/awesome-software/imagemagick/README.md new file mode 100644 index 0000000..2c2b78b --- /dev/null +++ b/awesome-software/imagemagick/README.md @@ -0,0 +1,9 @@ +### Remove background from image + +Background color can be specified as hex or a name such +as `white`. The `fuzz` parameter should be modified to +fit desired output, 10% is usually a good bet. + +```shell +convert -transparent "#ffffff" -fuzz 10% imagen.png imagen-sin-fondo.png +```