agregar a los snippets

This commit is contained in:
tavo-wasd 2024-03-05 21:15:07 -06:00
parent ebe8f9fe6d
commit 674093e55f

View file

@ -8,3 +8,9 @@ date: 2023-11-13
```shell
convert -transparent white -fuzz 10% image.jpg image-transparent.png
```
Cambiar el color `#076678` de una imagen y reemplazarlo por `#121212`
```shell
convert image.jpg -fuzz 15% -fill "#121212" -opaque "#076678" image-swapped.jpg
```