Re: [PHP-DB] Manipulate an image automatically

2006-04-14 Thread Anthony Lee
What is the quickest way to manipulate an image? With ImageMagick from PHP: ?php exec('convert my_image.jpg -gravity southeast -annotate 0 'My Text' result.jpg'); ? Lot's of good examples here: http://www.cit.gu.edu.au/~anthony/graphics/imagick/annotating/#watermarking -- PHP Database Mailing

[PHP-DB] Manipulate an image automatically

2006-04-13 Thread Henry Ortega
What is the quickest way to manipulate an image? I have a 300x100 image of something (template), and I want text to be inserted to that graphic at a certain coordinate (e.g. lower right), how would I do that?

Re: [PHP-DB] Manipulate an image automatically

2006-04-13 Thread JupiterHost.Net
Henry Ortega wrote: What is the quickest way to manipulate an image? I have a 300x100 image of something (template), and I want text to be inserted to that graphic at a certain coordinate (e.g. lower right), how would I do that? This has nothing to do with databases and PHP, I think you

Re: [PHP-DB] Manipulate an image automatically

2006-04-13 Thread Brad Bonkoski
query google about imagemagick tutorialsassuming you are using Linux... -Brad Henry Ortega wrote: What is the quickest way to manipulate an image? I have a 300x100 image of something (template), and I want text to be inserted to that graphic at a certain coordinate (e.g. lower right), how

Re: [PHP-DB] Manipulate an image automatically

2006-04-13 Thread Craig Hoffman
I've used GD several times, it works well and its easy to use. http://us2.php.net/manual/en/function.gd-info.php Craig Hoffman IM: m0untaind0g On Apr 13, 2006, at 9:52 AM, Henry Ortega wrote: What is the quickest way to