ImagickDraw::__construct

(PECL imagick 2, PECL imagick 3)

ImagickDraw::__constructO construtor ImagickDraw

Descrição

public ImagickDraw::__construct()
Aviso

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

O construtor ImagickDraw.

Valor Retornado

Nenhum valor é retornado.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
-1
Anonymous
16 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.
To Top