3D text + texture + shadow

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?".
tunezio
Posts: 26
Joined: 2016-08-09T08:59:20-07:00
Authentication code: 1151

Re: 3D text + texture + shadow

Post by tunezio »

thanks
Last edited by tunezio on 2016-08-17T03:07:53-07:00, edited 1 time in total.
tunezio
Posts: 26
Joined: 2016-08-09T08:59:20-07:00
Authentication code: 1151

Re: 3D text + texture + shadow

Post by tunezio »

I finally solved my problems and obtain a good result

Code: Select all

convert -resize "240x114>" -extent 240x114 -background black -gravity center -fill white -pointsize 125 -size x114 -font "barata.ttf" label:"Votre texte" -alpha off -trim \( -clone 0 -tile texture_finale.jpg -draw "color 0,0 reset" -fill "#C3F000" -colorize 50% \) \( -clone 0 -fill none -colorize 100% \) -reverse -compose over -composite -alpha set -virtual-pixel transparent -channel A -blur 0x0.7 -level 50,100% +channel \( +clone -background black -shadow 80x3-3+3 \) +swap -background none -layers merge +repage cc5db7677bf8e80d86a947b24c26761a.png
tunezio
Posts: 26
Joined: 2016-08-09T08:59:20-07:00
Authentication code: 1151

Re: 3D text + texture + shadow

Post by tunezio »

I want to add a second text line with different size using the code below

Thanks
Post Reply