(PHP 4, PHP 5, PHP 7)
imageinterlace — Aktiviere oder Deaktiviere Interlacing
$image
[, int $interlace
= 0
] ) : intimageInterlace() schaltet das Interlace-Bit an oder aus.
Ist das Interlace-Bit gesetzt, und das Bild wird als JPEG Bild verwendet, dann wird das Bild als progressives JPEG erzeugt.
image
Eine von den verschiedenen Erzeugungsfunktionen wie imagecreatetruecolor() gelieferte Grafikressource.
interlace
Wenn ungleich 0, wird das Bild interlaced; andernfalls wird das Interlace-Bit ausgeschaltet.
Gibt 1 zurück, wenn das Interlace-Bit des Bildes gesetzt ist, anderfalls 0.
Beispiel #1 Aktiviere Interlacing unter Verendung von imageinterlace()
<?php
// Erzeuge ein Bild
$im = imagecreatefromgif('php.gif');
// Aktiviere Interlacing
imageinterlace($im, true);
// Speichere das Bild interlaced
imagegif($im, './php_interlaced.gif');
imagedestroy($im);
?>