Imagick::newImage

(PECL imagick 2.0.0)

Imagick::newImage����һ��ͼƬ

˵��

Imagick::newImage ( int $cols , int $rows , mixed $background [, string $format ] ) : bool

����һ�� Imagick ͼƬ����ͬʱ���Ը�������һ�� ImagickPixel ֵ��Ϊ�䱳��ɫ��

����

cols

�½�ͼƬ�����е�ֵ����������أ�

rows

�½�ͼƬ�����е�ֵ���߶������أ�

background

�½�ͼƬ����ı���ɫ

format

ͼƬ��ʽ������������� Imagick 2.0.1 �汾��ӵġ�

����ֵ

�ɹ�ʱ���� TRUE��

�����쳣

����ʱ�׳� ImagickException��

������־

�汾 ˵��
2.1.0 ���ڿ����ƺ�����һ���ַ�����Ϊ��ɫ����������������ڴ�֮ǰ�İ汾ֻ������һ�� ImagickPixel �������ʽ���롣

����

Example #1 Using Imagick::newImage():

Create a new image and display it.

<?php

$image 
= new Imagick();
$image->newImage(100100, new ImagickPixel('red'));
$image->setImageFormat('png');

header('Content-type: image/png');
echo 
$image;

?>