PHP 8.3.4 Released!

Imagick::setImageDispose

(PECL imagick 2, PECL imagick 3)

Imagick::setImageDisposeConfigure la méthode de récupération

Description

public Imagick::setImageDispose(int $dispose): bool

Configure la méthode de récupération.

Liste de paramètres

dispose

Valeurs de retour

Retourne true en cas de succès.

Erreurs / Exceptions

Lance une exception ImagickException si une erreur survient.

add a note

User Contributed Notes 1 note

up
0
malou_pitawawa at hotmail dot com
14 years ago
The layer disposal method defines the way each the displayed image is to be modified after the current 'frame' of an animation has finished being displayed (after its 'delay' period), but before the next frame on an animation is to be overlaid onto the display.

Value for $dispose:

Undefined: 0 -> No disposal specified (equivalent to 'none').
None: 1 -> Do not dispose, just overlay next frame image.
Background: 2 -> Clear the frame area with the background color.
Previous: 3 -> Clear to the image prior to this frames overlay.

from: http://www.imagemagick.org/script/command-line-options.php?#dispose
To Top