update page now
Laravel Live Japan

Imagick::animateImages

(PECL imagick 2 >= 2.3.0, PECL imagick 3)

Imagick::animateImagesAnimates an image or images

说明

public Imagick::animateImages(string $x_server): bool

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 note

up
0
gomadurai at gmail dot com
16 years ago
Below eg shows how to create animated gif
<?php

$multiTIFF = new Imagick();

$mytifspath = "./man"; / your image directory

$files = scandir($mytifspath);

/print_r($files);
   
/*foreach( $files as $f )
{*/

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);

?>
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant