©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
(No version information available, might only be in Git)
Imagick::animateImages — Animates an image or images
$x_server
)This method animates the image onto a local or remote X server. This method is not available on Windows. 此方法在Imagick基于ImageMagick 6.3.6以上版本编译时可用。
x_server
X server address
成功时返回 TRUE
。
[#1] gomadurai at gmail dot com [2009-08-14 03:31:53]
Below eg shows how to create animated gif
<?php
$multiTIFF = new Imagick();
$mytifspath = "./man"; // your image directory
$files = scandir($mytifspath);
//print_r($files);
for($i=2;$i<6;$i++)
{
echo $files[$i];
echo "<br>";
$auxIMG = new Imagick();
$auxIMG->readImage($mytifspath."/".$files[$i]);
$multiTIFF->addImage($auxIMG);
}
//file multi.TIF
$multiTIFF->writeImages('multi423432.gif', true); // combine all image into one single image
//files multi-0.TIF, multi-1.TIF, ...
$multiTIFF->writeImages('multi.gif', false);
?>