Imagick::statisticImage

(PECL imagick 3 >= 3.3.0)

Imagick::statisticImage使用统计函数修改图像

说明

public Imagick::statisticImage(
    int $type,
    int $width,
    int $height,
    int $channel = Imagick::CHANNEL_DEFAULT
): bool

用指定宽度和高度的邻域中的对应统计信息替换每个像素。

参数

type

width

height

channel

返回值

成功时返回 true

范例

范例 #1 Imagick::statisticImage()

<?php
function statisticImage($imagePath, $statisticType, $width, $height, $channel) {
$imagick = new \Imagick(realpath($imagePath));

$imagick->statisticImage(
$statisticType,
$width,
$height,
$channel
);

header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

statisticImage($imagePath, \Imagick::STATISTIC_MEDIAN, 5, 5, \Imagick::CHANNEL_DEFAULT);

?>

添加说明

用户贡献说明

此页面没有用户贡献的说明。
To Top