PHP 8.3.4 Released!

Imagick::animateImages

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

Imagick::animateImagesAnimates an image or images

Descrizione

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. Questo metodo è disponibile se Imagick è stato compilato con ImageMagick versione 6.3.6 o successive.

Elenco dei parametri

x_server

X server address

Valori restituiti

Restituisce true in caso di successo.

Vedere anche:

add a note

User Contributed Notes 1 note

up
0
gomadurai at gmail dot com
14 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