label not generating
Posted: 2012-04-23T09:42:56-07:00
hi,
I am trying to generate text with rotation, no background color, and not defining the size. The command which i am using is working fine on my windows machine:
C:/im/convert -background none label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 C:/public_html/text.png
but the same command on my server which is on linux is not working (not generating any image):
/usr/bin/convert -background none label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 /home/public_html/text.png
not even this:
/usr/bin/convert label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 /home/public_html/text.png
/usr/bin/convert -background none label:"fsdfds" -font Arial -pointsize 12 /home/public_html/text.png
but however this works:
/usr/bin/convert label:"fsdfds" -font Arial -pointsize 12 /home/public_html/text.png
I have referred the documentation the syntax is correct but i cant figureout the reason of its failure. I can not see any error messages as i am using PHP to use this command as a system call, and it does not give any errors.
please help
thank you
I am trying to generate text with rotation, no background color, and not defining the size. The command which i am using is working fine on my windows machine:
C:/im/convert -background none label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 C:/public_html/text.png
but the same command on my server which is on linux is not working (not generating any image):
/usr/bin/convert -background none label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 /home/public_html/text.png
not even this:
/usr/bin/convert label:"fsdfds" -fill #ff0000 -font Arial -pointsize 12 /home/public_html/text.png
/usr/bin/convert -background none label:"fsdfds" -font Arial -pointsize 12 /home/public_html/text.png
but however this works:
/usr/bin/convert label:"fsdfds" -font Arial -pointsize 12 /home/public_html/text.png
I have referred the documentation the syntax is correct but i cant figureout the reason of its failure. I can not see any error messages as i am using PHP to use this command as a system call, and it does not give any errors.
please help
thank you