Skip to content

Instantly share code, notes, and snippets.

@yoya
Created July 27, 2017 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoya/c14ec528e0a2043fb9ca7d7b8e911c1d to your computer and use it in GitHub Desktop.
Save yoya/c14ec528e0a2043fb9ca7d7b8e911c1d to your computer and use it in GitHub Desktop.
CMYK multiply compose
convert -size 400x400 xc:white -fill "#0ff" -draw "rectangle 25,125 225,325" c.png
convert -size 400x400 xc:white -fill "#f0f" -draw "rectangle 75,25 275,225" m.png
convert -size 400x400 xc:white -fill "#ff0" -draw "rectangle 175,75 375,275" y.png
convert -size 400x400 xc:white -fill "#888" -draw "rectangle 127,175 320,375" k.png
composite c.png -compose multiply m.png cm.png
composite cm.png -compose multiply y.png cmy.png
composite cmy.png -compose multiply k.png cmyk.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment