Manipulate an image automatically

Manipulate an image automatically

am 13.04.2006 16:52:18 von Henry Ortega

------=_Part_21208_26248072.1144939938060
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

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?

------=_Part_21208_26248072.1144939938060--

Re: Manipulate an image automatically

am 13.04.2006 16:55:46 von mlists

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 want an image
manipulation list or documentation.

How about http://search.cpan.org/perldoc?GD

HTH :)

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Manipulate an image automatically

am 13.04.2006 16:59:53 von Brad Bonkoski

query google about imagemagick tutorials....assuming 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 would I do
>that?
>
>
>

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: Manipulate an image automatically

am 13.04.2006 17:04:50 von Jim McDonald

Image Magick, of course. http://www.imagemagick.org/=20

-----Original Message-----
From: Henry Ortega [mailto:juandelacruz@gmail.com]=20
Sent: Thursday, April 13, 2006 9:52 AM
To: php-db@lists.php.net
Subject: Manipulate an image automatically

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?

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Manipulate an image automatically

am 13.04.2006 18:05:32 von 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 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?

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Manipulate an image automatically

am 14.04.2006 08:03:05 von Anthony Lee

> What is the quickest way to manipulate an image?

With ImageMagick from 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/annotatin g/#watermarking

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php