php,unix command ,imagick help me
Posted
by jagadeeshbalu
on Stack Overflow
See other posts from Stack Overflow
or by jagadeeshbalu
Published on 2010-05-20T04:49:09Z
Indexed on
2010/05/20
5:20 UTC
Read the original article
Hit count: 246
This command add the text "flower" to the image:
convert flower.jpg -font courier -fill white -pointsize 20 -annotate +50+50 'Flower' flower_annotate1.jpg
I'm using ImageMagick 2.2.0. I'm running it from PHP using:
system('convert flower.jpg -font courier -fill white -pointsize 20 -annotate +50+50 'Flower' flower_annotate1.jpg');
but I'm not getting the result
© Stack Overflow or respective owner