啟用或禁用隔行掃瞄

imageinterlace

(PHP 4, PHP 5, PHP 7, PHP 8)

imageinterlace啟用或禁用隔行掃瞄

說明

imageinterlace(resource $image, int $interlace = 0): int

imageinterlace() 打開或關閉隔行掃瞄位(bit)。

如果設定了隔行掃瞄位(interlace bit),對於 JPEG 影象,會被建立為漸進式 JPEG 影象。

參數

image

由圖像建立函式(例如imagecreatetruecolor())返回的 GdImage 對象。

interlace

如果為 0 ,則關閉隔行掃瞄,否則將打開隔行掃瞄。

返回值

如果為影象設定了隔行掃瞄,則返回 1 ,否則返回 0 。

範例

示例 #1 使用 imageinterlace() 打開隔行掃瞄

<?php
// 建立一個影象實例
$im imagecreatefromgif('php.gif');

// 打開隔行掃瞄
imageinterlace($imtrue);

// 儲存影象
imagegif($im'./php_interlaced.gif');
imagedestroy($im);
?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *