imageinterlace 启用或禁用隔行扫描

发表日期:2021-07-01 08:56:00 | 来源: | | 浏览(733) 分类:GD 和图像处理 函数

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())返回的图象资源。

interlace

如果为 0 ,则关闭隔行扫描,否则将打开隔行扫描。

返回值

如果为图像设置了隔行扫描,则返回 1 ,否则返回 0 。

范例

示例 #1 使用 imageinterlace() 打开隔行扫描

<?php 
// 创建一个图像实例$im = imagecreatefromgif('php.gif');
// 打开隔行扫描imageinterlace($im, true);
// 保存图像imagegif($im, './php_interlaced.gif');
imagedestroy($im);
?>

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。