How to Create a Wood Engraved Logo Mockup?
How to Create a Wood Engraved Logo Mockup?
I want to create a mockup as the same image below:
Thank you for your help!
Thank you for your help!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to Create a Wood Engraved Logo Mockup?
Please always provide your ImageMagick version and platform!
Here is one way to make an inner shadow effect. Unix syntax.
Here is one way to make an inner shadow effect. Unix syntax.
Code: Select all
convert bur1.png \
\( -clone 0 -alpha off -negate \) \
\( -clone 0 -alpha extract \) \
-delete 0 \
\( -clone 1 -background black -motion-blur 0x15-135 \) \
\( -clone 0,2,1 -compose multiply -composite \) \
-delete 0,2 \
+swap -alpha off -compose copy_opacity -composite \
\( n1.jpg -resize 50% \) +swap -gravity center -compose multiply -composite n1_bur1_innershadow.png
Re: How to Create a Wood Engraved Logo Mockup?
Thanks bro. I am using ImageMagick version 6 on Linux OS.
I ran your script but result not exactly as I expected : "WOOD ENGRAVED" effect
Expected:
Please help me. Many thanks!
I ran your script but result not exactly as I expected : "WOOD ENGRAVED" effect
Expected:
Please help me. Many thanks!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to Create a Wood Engraved Logo Mockup?
Try this:
Or using -modulate rather than -brightness-contrast, so we can change the hue slightly reddish
Code: Select all
convert bur1.png \
\( -clone 0 -alpha off -negate \) \
\( -clone 0 -alpha extract -write mpr:alpha \) \
-delete 0 \
\( -clone 1 -background black -motion-blur 0x15-135 \) \
\( -clone 0,2,1 -compose multiply -composite \) \
-delete 0,2 \
+swap -alpha off -compose copy_opacity -composite \
\( n1.jpg -resize 50% +write mpr:img -brightness-contrast -50,0 \) +swap -compose multiply -composite \
mpr:img +swap mpr:alpha -compose over -composite \
n1_bur1_innershadow2.png
Or using -modulate rather than -brightness-contrast, so we can change the hue slightly reddish
Code: Select all
convert bur1.png \
\( -clone 0 -alpha off -negate \) \
\( -clone 0 -alpha extract -write mpr:alpha \) \
-delete 0 \
\( -clone 1 -background black -motion-blur 0x15-135 \) \
\( -clone 0,2,1 -compose multiply -composite \) \
-delete 0,2 \
+swap -alpha off -compose copy_opacity -composite \
\( n1.jpg -resize 50% +write mpr:img -modulate 30,100,95 \) +swap -compose multiply -composite \
mpr:img +swap mpr:alpha -compose over -composite \
n1_bur1_innershadow3.png
Re: How to Create a Wood Engraved Logo Mockup?
Many thanks for your support!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to Create a Wood Engraved Logo Mockup?
If you have a second darker wood grain image, that could be used for the engraved parts.
Re: How to Create a Wood Engraved Logo Mockup?
Mr fmw42 , how can i adjustment position of logo image? I using -geometry but not work.
Last edited by romeo1 on 2018-08-01T01:34:55-07:00, edited 1 time in total.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to Create a Wood Engraved Logo Mockup?
Try this variation that moves the engraving to the center. You should be able to change the gravity and include a -geometry offset.
Code: Select all
convert \( bur1.png -alpha extract -write mpr:alpha \) \
\( -clone 0 -background black -motion-blur 0x15-135 \) \
\( -clone 0,1 -compose multiply -composite \) \
-delete 1 \
+swap -alpha off -compose copy_opacity -composite \
\( n1.jpg -resize 50% +write mpr:img -modulate 30,100,95 \) \
-compose multiply -composite \
mpr:alpha -alpha off -compose copy_opacity -composite \
mpr:img +swap -gravity center -compose over -composite \
n1_bur1_innershadow4a.png
Re: How to Create a Wood Engraved Logo Mockup?
Thanks my idol!
Re: How to Create a Wood Engraved Logo Mockup?
Please help me If i want using a second darker wood grain image for the engraved parts.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to Create a Wood Engraved Logo Mockup?
try this:
Code: Select all
convert \( bur1.png -alpha extract -write mpr:alpha \) \
\( -clone 0 -background black -motion-blur 0x15-135 \) \
\( -clone 0,1 -compose multiply -composite \) \
-delete 1 \
+swap -alpha off -compose copy_opacity -composite \
\( 001.jpg -resize 50% \) -compose multiply -composite \
mpr:alpha -alpha off -compose copy_opacity -composite \
\( n1.jpg -resize 50% \) +swap -gravity center -compose over -composite \
n1_bur1_innershadow5.png