Soft Focus

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
dognose
Posts: 265
Joined: 2005-03-08T22:16:37-07:00

Soft Focus

Post by dognose »

Trying to recreate this tutorial.

http://www.photoshopessentials.com/phot ... oft-focus/

Wondering what would properly recreate this. I can't figure out what "soft light" would be.

Image
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Soft Focus

Post by Bonzo »

Have you thought of using the "soft-light" option for compose ?
Original:
Image
Pegtop:
Image
Softlight:
Image
dognose
Posts: 265
Joined: 2005-03-08T22:16:37-07:00

Re: Soft Focus

Post by dognose »

What were you composing the image with? I can't figure out what command you used..

the results look good though.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Soft Focus

Post by Bonzo »

Code: Select all

convert horses.jpg -gaussian-blur 0x4 gaussian.png
composite gaussian.png horses.jpg -compose Pegtop-light -matte pegtop.png
composite gaussian.png horses.jpg -compose soft-light -matte soft.png
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Soft Focus

Post by anthony »

See Soft Blur which will give you more control...

http://www.imagemagick.org/Usage/convolve/#soft_blur
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply