I currently have the following commands performed on a single image (this is inside a shell script):
Code: Select all
`convert $file \( -clone 0 -fill '#222b6d' -colorize 100% \) \( -clone 0 -colorspace gray -negate \) -compose blend -define compose:args=100,0 -composite $file`
`convert $file \( -clone 0 -fill '#f7daae' -colorize 100% \) \( -clone 0 -colorspace gray \) -compose blend -define compose:args=100,0 -composite $file`
`convert $file -contrast -modulate 100,150,100 -auto-gamma $file`
Again, I have been pounding on this for several hours now so any help would be greatly appreciated
Thanks.