downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ImagickDraw::destroy> <ImagickDraw::composite
[edit] Last updated: Fri, 17 May 2013

view this page in

ImagickDraw::__construct

(PECL imagick 2.0.0)

ImagickDraw::__constructThe ImagickDraw constructor

Descrição

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.



add a note add a note User Contributed Notes ImagickDraw::__construct - [1 notes]
up
1
Anonymous
4 years ago
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.

 
show source | credits | sitemap | contact | advertising | mirror sites