Make colors more dark and vivid
Posted: 2008-11-16T14:26:39-07:00
Last time I was asking about colorizing images and I found a perfect solution to my problem, like this:
However in some cases is not enough, sometimes I run into situation where I would like to add more
intensiveness to my images.
In above example I change colour of images to wine-red, however they are too bright and washed-out,
this is the result:
I would like it to be more intensive, like this:
I'm not familiar with graphic operations, so I don't even know what kind of operation I should apply to get this
kind of effect at the end - I already tried to play with intensify, but the results were horrible.
Code: Select all
for i in * ; do convert $i -colorspace gray -fill "rgb(140,0,14)" -tint 80 $i; done;
intensiveness to my images.
In above example I change colour of images to wine-red, however they are too bright and washed-out,
this is the result:
I would like it to be more intensive, like this:
I'm not familiar with graphic operations, so I don't even know what kind of operation I should apply to get this
kind of effect at the end - I already tried to play with intensify, but the results were horrible.