I have some text on a transparent background:
Code: Select all
convert -pointsize 200 -background none -fill blue label:"Anthony" text.png
The texture I am using:
I am converting the texture to a monochrome and inverting it before using it.
The problems I am having with different codes are:
If the texture is not the same size as the text image I get a size error.
The white areas I want transparent are staying white.
The text is black instead of blue.
Amongst other things I have tried:
convert input -mask -mask output
convert input mask -alpha off -compose copy-opacity -composite output
Please can somebody point me in the right direction.