GD and Image Funkcje
PHP Manual

imageinterlace

(PHP 4, PHP 5)

imageinterlaceEnable or disable interlace

Opis

int imageinterlace ( resource $image [, int $interlace = 0 ] )

imageinterlace() turns the interlace bit on or off.

If the interlace bit is set and the image is used as a JPEG image, the image is created as a progressive JPEG.

Parametry

obraz

Zasób obrazu, zwrócony przez jedną z funkcji tworzących obrazy, taką jak imagecreatetruecolor().

interlace

If non-zero, the image will be interlaced, else the interlace bit is turned off.

Zwracane wartości

Returns 1 if the interlace bit is set for the image, 0 otherwise.

Przykłady

Przykład #1 Turn on interlacing using imageinterlace()

<?php
// Create an image instance
$im imagecreatefromgif('php.gif');

// Enable interlancing
imageinterlace($imtrue);

// Save the interlaced image
imagegif($im'./php_interlaced.gif');
imagedestroy($im);
?>


GD and Image Funkcje
PHP Manual