vote up 5 vote down star

Is it possible to create images with PHP (as opposed to simply linking to them via HTML) and if so, where should I go first to learn about such a thing?

flag

6 Answers

vote up 10 vote down check

I prefer the GD library - check out the Examples, and this example:

<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(120, 20)
      or die("Cannot Initialize new GD image stream");
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>

Outputs:

imagecreatetrucolor example

See imagecreatetruecolor.

link|flag
You should always try to use the header() function at the last moment possible (such as, before the imagepng() funciton). The way it is now, if the php script dies "Cannot Initialize new GD image stream" the browser will try to interpret it as a gif, so it won't be intelligible. – stalepretzel Sep 7 '08 at 0:25
vote up 0 vote down

MagickWand is pretty good for that as well, and pretty powerful.

http://www.bitweaver.org/doc/magickwand/index.html

This snippet will take an image, wrie the 'rose' in Vera, or whatever fonts are available, and flush the image to the browser.

$drawing_wand=NewDrawingWand(); DrawSetFont($drawing_wand,"/usr/share/fonts/bitstream-vera/Vera.ttf"); DrawSetFontSize($drawing_wand,20); DrawSetGravity($drawing_wand,MW_CenterGravity); $pixel_wand=NewPixelWand(); PixelSetColor($pixel_wand,"white"); DrawSetFillColor($drawing_wand,$pixel_wand); if (MagickAnnotateImage($magick_wand,$drawing_wand,0,0,0,"Rose") != 0) { header("Content-type: image/jpeg"); MagickEchoImageBlob( $magick_wand ); } else { echo MagickGetExceptionString($magick_wand); }

link|flag
vote up 3 vote down

For decent tutorials on image generation using PHP:

GD - http://devzone.zend.com/node/view/id/1269

ImageMagick - http://www.sitepoint.com/article/dynamic-images-imagemagick

link|flag
+1 yes, good tutorial indeed, thanks! – tharkun Apr 29 at 23:39
vote up 2 vote down

PHP GD

Pear Image_Canvas (and Image_Graph for graphs)

Those are the two I know of.

link|flag
vote up 2 vote down

Check out GD. It contains a ton of functions for image creation,manipulation and interrogation. Your PHP install just has to built with the GD library which it probably was.

link|flag
vote up 5 vote down

Yes this is possible. I believe there are multiple libraries to accomplish this. The most widely used is probably ImageMagick which is actually not PHP specific but comes with appropriate bindings.

See also in the PHP documentation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.