Monocrome and then opaque color?

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
mickey

Monocrome and then opaque color?

Post by mickey »

Is it possible to make this code work?

Code: Select all

convert image.jpg -monochrome -fuzz 100% -fill red -opaque black final_image.jpg
or DO i need to make the "-monocrome" effect first, and then the other afterwards?

- Regards
Mike
mickey

Re: Monocrome and then opaque color?

Post by mickey »

Kind if imbarazing, but i accually just figured it out like 2 mins after, so for those who want to know how i did, i replaced the "-monochrome" with "-modulate 100,0"

Code before:

Code: Select all

convert image.jpg -monochrome -fuzz 100% -fill red -opaque black final_image.jpg
Code after:

Code: Select all

convert image.jpg -modulate 100,0 -fuzz 100% -fill red -opaque black final_image.jpg
Atleast i hope someone with the same problem visit this post then ;)

-Regards
Mike
Post Reply