Sepia effect

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Anandkv
Posts: 14
Joined: 2009-11-18T06:54:09-07:00
Authentication code: 8675309

Sepia effect

Post 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,
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Sepia effect

Post 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
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Sepia effect

Post 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.
snibgo's IM pages: im.snibgo.com
Post Reply