Search found 1 match

by tommi_v
2014-08-25T07:57:45-07:00
Forum: MagickWand
Topic: Wands blend to implement colorize don't match with CLI
Replies: 0
Views: 12077

Wands blend to implement colorize don't match with CLI

Hi. I tried to convert a pretty well-known snippet for image color-tone from CLI version to Wand:


convert \
in.jpg \
\( -clone 0 -fill '#222b6d' -colorize 100% \) \
\( -clone 0 -colorspace gray \) \
-compose blend -define compose:args=100,0 -composite \
out.jpg


I assume this codes does ...