文字

ImagickDraw::__construct

(PECL imagick 2.0.0)

ImagickDraw::__constructThe ImagickDraw constructor

说明

ImagickDraw::__construct ( void )
Warning

本函数还未编写文档,仅有参数列表。

The ImagickDraw constructor

返回值

没有返回值。

用户评论:

[#1] Anonymous [2009-03-31 14:59:13]

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.

上一篇: 下一篇: