Page 1 of 1
How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-05T11:14:04-07:00
by Larsenv
Hi, I'm using a Mac with ImageMagick 6.9.1-10 and I want to port this Photoshop text emboss and bevel with these settings to ImageMagick.
Is this something I can possibly do?
Thanks.
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-05T12:09:07-07:00
by fmw42
Closest I can suggest is my script, bevel, at the link below.
Or something like:
Code: Select all
convert -background black -fill white -pointsize 96 -font arial \
label:"Super Mario World" -bordercolor black -border 10 -alpha off \
\( -clone 0 -morphology erode octagon:1 -negate \) \
\( -clone 0 -morphology dilate octagon:2 -shade 135x60 \) \
-reverse -compose multiply -composite text_bevel.png
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-06T17:29:47-07:00
by Larsenv
Thanks, but how can I remove the background?
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-06T20:12:54-07:00
by fmw42
Your image still has the background, so I did not put that in.
Code: Select all
convert -background black -fill white -pointsize 96 -font arial \
label:"Super Mario World" -bordercolor black -border 10 -alpha off \
\( -clone 0 -morphology erode octagon:1 -negate \) \
\( -clone 0 -morphology dilate octagon:2 -shade 135x60 \) \
\( -clone 0-2 -reverse -compose multiply -composite \) \
\( -clone 0 -morphology dilate octagon:4 \) \
-delete 0-2 -compose over \
-alpha off -compose copy_opacity -composite text_bevel2.png
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-07T09:43:04-07:00
by Larsenv
Thanks, but why is it giving me multiple images?
I want one only.
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-07T09:48:19-07:00
by fmw42
I only get one image. I do not know what you are doing otherwise. Try my command above. It may have been edited to remove +write commands while you were testing it. If it still gives multiple outputs, send me each output.
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-09T09:02:39-07:00
by Larsenv
Oh never mind, I forgot the Composite Command.
It works fine now.
Is there any way to improve this? I don't like how the emboss takes up a lot of the black part of this picture.
http://puu.sh/pmBD4/83076316fa.png
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Posted: 2016-06-09T09:54:50-07:00
by fmw42
All I can suggest is to use a little larger pointsize or a thicker font. Note I used Arial which is not very thick.