mirror of
https://gitlab.com/tavo-wasd/blog.git
synced 2025-06-07 14:43:29 -06:00
10 lines
202 B
Markdown
10 lines
202 B
Markdown
---
|
|
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
|
|
```
|