ImagickDraw::__construct

(PECL imagick 2.0.0)

ImagickDraw::__constructThe ImagickDraw constructor

Description

ImagickDraw::__construct ( void )
Warning

This function is currently not documented; only its argument list is available.

The ImagickDraw constructor

Return Values

No value is returned.

Коментарии

Автор:
To set up and output an image the very minimum:
<?php
$img 
= new Imagick();
$img->newImage200200, new ImagickPixel'lime' ) );
$img->setImageFormat"png" );
header"Content-Type: image/png" );
echo 
$img;
?>
Copy, paste; and if imagemagick is enabled it should come up with a lime colored square.
2009-03-31 17:59:13
http://php5.kiev.ua/manual/ru/imagickdraw.construct.html

    Поддержать сайт на родительском проекте КГБ