update : 2015.11.03
php.shukuma.com

검색:
 
 
Replaces colors in the image

Imagick::haldClutImage

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

Imagick::haldClutImageReplaces colors in the image

설명

public bool Imagick::haldClutImage ( Imagick $clut [, int $channel = Imagick::CHANNEL_DEFAULT ] )

Replaces colors in the image using a Hald lookup table. Hald images can be created using HALD color coder.

인수

clut

Imagick object containing the Hald lookup image.

channel

채널 모드에 유효한 채널 상수를 제공합니다. 둘 이상의 채널을 적용하려면, 비트 연산자를 이용해서 채널 상수를 조합하십시오. 기본값은 Imagick::CHANNEL_DEFAULT. 채널 상수 목록을 참고하십시오.

반환값

성공시에 TRUE를 반환합니다.

오류/예외

오류시에 ImagickException이 발생합니다.

예제

Example #1 Imagick::haldClutImage()

<?php
function haldClutImage($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagickPalette = new \Imagick(realpath("images/hald/hald_8.png"));
    
$imagickPalette->sepiatoneImage(55);
    
$imagick->haldClutImage($imagickPalette);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>