Gmagick::setimageinterlacescheme

(PECL gmagick >= Unknown)

Gmagick::setimageinterlaceschemeEstablece la combinación de entrelazado de la imagen

Descripción

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

Establece la combinación de entrelazado de la imagen.

Parámetros

interlace

La combinación de entrelazado de la imagen: NoInterlace, LineInterlace, PlaneInterlace, PartitionInterlace.

Valores devueltos

El objeto Gmagick si se tuvo éxito

Errores/Excepciones

Arroja un GmagickException en caso de error.

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