cut by color from image

This commit is contained in:
Alexander Popov 2025-04-20 02:00:26 +03:00
parent 738927557c
commit 35f2911f36
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6

View File

@ -0,0 +1,10 @@
---
title: "🖌️ ImageMagick: Вырезка из изображения по цвету"
date: 2025-04-20T00:56:23+03:00
draft: false
tags: [tips, images]
---
```sh
magick image.webp -channel rgba -fuzz 20% -fill none +opaque black result.png
```