imageinterlace
imageinterlace
(PHP 4, PHP 5, PHP 7)
imageinterlace - 启用或禁用交错
描述
int imageinterlace ( resource $image [, int $interlace = 0 ] )
imageinterlace()
打开或关闭交错位。
如果隔行比特被设置并且图像被用作JPEG图像,则该图像被创建为逐行JPEG。
参数
`image`
一个图像资源,由图像创建函数之一返回,如imagecreatetruecolor()。
interlace
如果非零,则图像将被隔行扫描,否则交错位将被关闭。
返回值
如果交错位为图像设置,则返回1,否则返回0。
例子
Example #1 Turn on interlacing using imageinterlace()
<?php
// Create an image instance
$im = imagecreatefromgif('php.gif'
// Enable interlancing
imageinterlace($im, true
// Save the interlaced image
imagegif($im, './php_interlaced.gif'
imagedestroy($im
?>
← imagegrabwindow
imageistruecolor →