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,
Sepia effect
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Sepia effect
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
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
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Sepia effect
I can get similar tones and colours with:
The desired result also, I think, contains some smoothing.
Code: Select all
convert org.jpg -colorspace gray ^
( +clone -sepia-tone 80%% ^
-alpha on -channel alpha -evaluate multiply 0.19 ) ^
-composite sepiaX.jpg
snibgo's IM pages: im.snibgo.com