当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imageinterlace()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imageinterlace() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。