GoLang Imagick::blueShiftImage

request it (221)
GoLang replacement for PHP's Imagick::blueShiftImage [edit | history]



Do you know a GoLang replacement for PHP's Imagick::blueShiftImage? Write it!

PHP Imagick::blueShiftImage

PHP original manual for Imagick::blueShiftImage [ show | php.net ]

Imagick::blueShiftImage

(No version information available, might only be in Git)

Imagick::blueShiftImageDescription

Description

public bool Imagick::blueShiftImage ([ float $factor = 1.5 ] )

Mutes the colors of the image to simulate a scene at nighttime in the moonlight.

Parameters

factor

Return Values

Returns TRUE on success.

Examples

Example #1 Imagick::blueShiftImage()

<?php
function blueShiftImage($imagePath$blueShift) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->blueShiftImage($blueShift);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>