(PHP 4, PHP 5, PHP 7, PHP 8)
imageinterlace — 启用或禁用隔行扫描
$image
, int $interlace
= 0): intimageinterlace() 打开或关闭隔行扫描位(bit)。
如果设置了隔行扫描位(interlace bit),对于 JPEG 图像,会被创建为渐进式 JPEG 图像。
如果为图像设置了隔行扫描,则返回 1 ,否则返回 0 。
示例 #1 使用 imageinterlace() 打开隔行扫描
<?php
// 创建一个图像实例
$im = imagecreatefromgif('php.gif');
// 打开隔行扫描
imageinterlace($im, true);
// 保存图像
imagegif($im, './php_interlaced.gif');
imagedestroy($im);
?>