Imagick::textureImage

(No version information available, might be only in CVS)

Imagick::textureImage — Repeatedly tiles the texture image

Описание

bool Imagick::textureImage ( Imagick $texture_wand )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Repeatedly tiles the texture image across and down the image canvas.

Список параметров

texture_wand

Возвращаемые значения

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

Коментарии

<?php

$image 
= new Imagick();
$image->newImage(500500, new ImagickPixel('red'));
$image->setImageFormat("png");
$type=$image->getFormat();
header("Content-type: $type");

$texture = new Imagick();
$texture->readImage('texture.png');
$image $image->textureImage($texture);

echo 
$image;

?>

This works for me, however, I give no guarantees that the above example is the proper usage of this function.
2010-09-08 15:41:35
http://php5.kiev.ua/manual/ru/function.imagick-textureimage.html

    Поддержать сайт на родительском проекте КГБ