Page 1 of 1

RGB Curve .. hard light .. in im?

Posted: 2009-12-28T15:32:39-07:00
by dognose
I'm trying to recreate this:

Image

from this 'shop tuturial

http://photoshopfrenzy.com/?p=94

I wasn't sure how the "hard light" and "rgb curve" actions would be performed in IM.

Does anyone have the commands that would get me started?

Re: RGB Curve .. hard light .. in im?

Posted: 2009-12-28T17:23:54-07:00
by fmw42
not sure I understand all their steps correctly, but the curves part can be approximated by -level. Here is a close approximation of it in IM

Image

convert beardman.gif \
\( -clone 0 -sharpen 0x5 \) \
\( -clone 0 -clone 1 -compose hardlight -composite -sharpen 0x5 \) \
\( -clone 1 -clone 2 -compose blend -set option:compose:args 50 -composite \) \
-delete 0-2 -modulate 100,60,100 -level 0x80% beardman_proc.gif

Image

You can play with the parameters for -sharpen, -compose blend, -modulate (to desaturate) and -level.

Re: RGB Curve .. hard light .. in im?

Posted: 2009-12-28T22:20:00-07:00
by dognose
Wow, that's pretty amazing likeness..

I'm not actually getting quite as good as results right now.. not sure if I'm in too early an IM version or what..

I'll have to play around with that.