Imagick::setImageBias

(PECL imagick 2, PECL imagick 3)

Imagick::setImageBiasSets the image bias for any method that convolves an image

Aviso

This function has been DEPRECATED as of Imagick 3.4.4. Relying on this function is highly discouraged.

Descrição

public Imagick::setImageBias ( float $bias ) : bool

Sets the image bias for any method that convolves an image (e.g. Imagick::ConvolveImage()).

Parâmetros

bias

Valor Retornado

Retorna true no sucesso.

Erros

Lança ImagickException em caso de erro.

Exemplos

Exemplo #1 Imagick::setImageBias()

<?php
//requires ImageMagick version 6.9.0-1 to have an effect on convolveImage
function setImageBias($bias) {
    
$imagick = new \Imagick(realpath("images/stack.jpg"));

    
$xKernel = array(
        -
0.7000.70,
        -
0.7000.70,
        -
0.7000.70
    
);

    
$imagick->setImageBias($bias * \Imagick::getQuantum());
    
$imagick->convolveImage($xKernel, \Imagick::CHANNEL_ALL);

    
$imagick->setImageFormat('png');
    
    
header('Content-type: image/png');
    echo 
$imagick->getImageBlob();
}

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top