Gmagick::setimageinterlacescheme

(PECL gmagick >= Unknown)

Gmagick::setimageinterlaceschemeDéfinit le schéma d'entrelacement de l'image

Description

public Gmagick::setimageinterlacescheme(int $interlace): Gmagick

Définit le schéma d'entrelacement de l'image.

Liste de paramètres

interlace

Une des constantes des schémas d'entrelacement de l'image (Gmagick::INTERLACE_*).

Valeurs de retour

L'objet Gmagick.

Erreurs / Exceptions

Émet une exception GmagickException en cas d'erreur.

add a note

User Contributed Notes 1 note

up
4
Isius
12 years ago
Just in case you're having trouble finding the constants for this like I was. They are as-of-yet unlisted on the predefined constants page.INTERLACE_UNDEFINED, UndefinedInterlaceINTERLACE_NO, NoInterlaceINTERLACE_LINE, LineInterlaceINTERLACE_PLANE, PlaneInterlaceINTERLACE_PARTITION, PartitionInterlace
To Top