Gmagick::setimageinterlacescheme

(PECL gmagick >= Unknown)

Gmagick::setimageinterlaceschemeSets the interlace scheme of the image

Descrizione

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

Sets the interlace scheme of the image.

Elenco dei parametri

interlace

One of the Interlace constant (Gmagick::INTERLACE_*).

Valori restituiti

The Gmagick object.

Errori/Eccezioni

Throws an GmagickException on 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