Page 1 of 1

Sepia effect

Posted: 2010-03-25T02:58:23-07:00
by Anandkv
Hi,

I am working on applying the sepia effect for the image. But it seems the effect did not meet with the client requirements. Attached the original image and the client sample for the sepia image. Please help me to attain the desired output.

Thanks & Regards,

Re: Sepia effect

Posted: 2010-03-25T09:26:01-07:00
by fmw42
what were your exact commands?

what was the complaint about your result?

see

http://www.imagemagick.org/Usage/color/#sepia-tone
http://www.imagemagick.org/Usage/color/#tinting
http://www.imagemagick.org/Usage/color/#duotone

also I have a unix script, tintilize, see link below

Re: Sepia effect

Posted: 2010-03-26T06:20:17-07:00
by snibgo
I can get similar tones and colours with:

Code: Select all

convert org.jpg -colorspace gray ^
  ( +clone -sepia-tone 80%% ^
    -alpha on -channel alpha -evaluate multiply 0.19 ) ^
  -composite sepiaX.jpg
The desired result also, I think, contains some smoothing.