imagemagick

This commit is contained in:
tavo-wasd 2023-11-07 17:46:27 -06:00
parent 288fe39962
commit 5888c4ef70

View file

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