ImagickDraw::destroy> <ImagickDraw::composite
Last updated: Fri, 30 Dec 2011

ImagickDraw::__construct

(PECL imagick 2.0.0)

ImagickDraw::__constructThe ImagickDraw constructor

Descrição

ImagickDraw ImagickDraw::__construct ( void )
Aviso

Esta função não está documentada; somente a lista de argumentos está disponível.

The ImagickDraw constructor

Valor Retornado

Não há valor retornado.



User Contributed Notes
ImagickDraw::__construct
Anonymous
31-Mar-2009 07:59
To set up and output an image the very minimum:
<?php
$img
= new Imagick();
$img->newImage( 200, 200, 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.

ImagickDraw::destroy> <ImagickDraw::composite
Last updated: Fri, 30 Dec 2011