Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

This is Add text to image

echo system('convert mug.jpg -font courier -fill green -pointsize 30 -annotate +100+230 'hi Wlecome yy'   mug123.jpg');

unix command run in php it is working fine when we change the point size hi welcome is over flow the image

how can we over come?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
209 views
Welcome To Ask or Share your Answers For Others

1 Answer

You want a large line of text on top of a small image? I'd expect it to overflow. You could put two lines of text one below the other.

However, since you're doing this in PHP, I'd recommend you use an image library like GD rather than shell out for imagemagick.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...