imageinterlace
(PHP 4, PHP 5, PHP 7, PHP 8)
imageinterlace — 啟用或禁用隔行掃瞄
說明
imageinterlace(resource
$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);
?>