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.
How can I port this Photoshop Text Emboss and Bevel to ImageMagick
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
Closest I can suggest is my script, bevel, at the link below.
Or something like:
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
Thanks, but how can I remove the background?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
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
Thanks, but why is it giving me multiple images?
I want one only.
I want one only.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
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
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
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
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How can I port this Photoshop Text Emboss and Bevel to ImageMagick
All I can suggest is to use a little larger pointsize or a thicker font. Note I used Arial which is not very thick.