garrettbernard wrote: ↑2017-08-04T10:39:49-07:00They should all be simple gradients (or at least be separated into different layers so they're easy to work with individually), so I think I'll make it work. Thanks a bunch for the answer!
If you have an image with nothing more than regions of a particular color of gradient, you can change the color of the gradient easily with
"-modulate 100,100,N", where "N" is a number from 0 to 200. Consider a command like this as an example...
Code: Select all
convert -size 200x200 gradient:blue-white -modulate 100,100,166.6 result.png
The input is a blue-to-white gradient. The result is a red-to-white gradient.
Another effective way to modify the color would be to make a grayscale gradient, select a fill color, and
"-tint N" the image. With "-tint" the "N" would be an amount specified as a percentage. Try this command to see how that can work...
Code: Select all
convert -size 200x200 gradient:black-white -fill orange -tint 100 result.png
That actually maintains the black end and white end of the gradient while colorizing the mid-tones.
This page on Color Modifications explains most of your basic options in a pretty understandable way.