imageinterlace()函數是PHP中的內置函數,用於啟用或禁用圖像中的隔行掃描。隔行掃描(也稱為隔行掃描)是一種對位圖圖像進行編碼的方法,以便部分接收該位圖圖像的人可以看到整個圖像的降級副本。網站上的隔行圖像和非隔行圖像之間的區別是,前者先以low-quality版本加載,然後隨著網站加載質量不斷提高,而非隔行圖像則以固定質量逐行加載。網站加載時從上到下。
用法:
int imageinterlace( resource $image, int $interlace )
參數:該函數接受上述和以下描述的兩個參數:
- $image:它指定要隔行掃描的圖像。
- $interlace:它指定是啟用還是禁用隔行掃描。
返回值:如果為圖像設置了隔行位,則此函數返回1,否則返回0。
以下示例說明了PHP中的imageinterlace()函數:
程序1:在此示例中,我們將啟用隔行掃描。
<?php
// Create an image from URL
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Enable interlacing
imageinterlace($im, 1);
// View the output
header('Content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
?>
輸出:
程序2:在此示例中,我們將禁用隔行掃描。
<?php
// Create an image from URL
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Disable interlacing
imageinterlace($im, 0);
// View the output
header('Content-type:image/jpeg');
imagejpeg($im);
imagedestroy($im);
?>
輸出:
參考: https://www.php.net/manual/en/function.imageinterlace.php
相關用法
- PHP pow( )用法及代碼示例
- d3.js d3.max()用法及代碼示例
- p5.js hex()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS url()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js hue()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js value()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imageinterlace() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。