Code: Select all
$final = "convert -font ".$font." -pointsize 90 -kerning 10 -fill White -size 1000x1000 xc:black -gravity center -annotate ".$skewx."x".$skewy."+0+0 '".$text."' final".$png;
exec($final, $result);
I would like to be able to create the text without having to set the size because it increases rendering time by alot.
Let's just say I know what the width and height can be before the text layer is created.
But as you can see I'm using annotate with some skewing, so without the size I lose text.
Is there anyway I can create the text layer with annotate without defining the size of the canvas?
Thanks