📅  最后修改于: 2023-12-03 15:33:33.222000             🧑  作者: Mango
imageinterlace()
函数用于设置图像的渐进式扫描(interlace)模式。渐进式扫描模式可以使图像逐行显示,以便在加载过程中显示更多的信息。在加载大型图像时,这个函数可以提高用户体验。
bool imageinterlace ( resource $image [, bool $interlace = false ] )
imagecreatetruecolor()
或 imagecreatefrom*()
系列函数获得。false
。成功时返回 true
,或者在失败时返回 false
。
// 创建一张图像
$image = imagecreatetruecolor(100, 100);
// 开启渐进式扫描模式
imageinterlace($image, true);
// 输出图像
header('Content-Type: image/png');
imagepng($image);
imagedestroy($image);