update : 2015.11.03
php.shukuma.com검색:
|
Imagick::functionImage(No version information available, might only be in Git) Imagick::functionImage — Applies a function on the image 설명
public bool Imagick::functionImage
( int
$function
, array $arguments
[, int $channel = Imagick::CHANNEL_DEFAULT
] )Applies an arithmetic, relational, or logical expression to a pseudo image. See also » ImageMagick v6 Examples - Image Transformations — Function, Multi-Argument Evaluate 이 메쏘드는 Imagick을 ImageMagick 6.4.9 이상으로 컴파일 했을 때만 사용할 수 있습니다. 인수
반환값
성공시에 오류/예외오류시에 ImagickException이 발생합니다. 예제
Example #1 Create a sinusoidal gradient
<?php 위 예제의 출력 예시: Example #2 Create a gradient from the polynomial (4x^2 - 4x + 1)
<?php 위 예제의 출력 예시: Example #3 Create a complex gradient from the polynomial (4x^2 - 4x^2 + 1) modulated by a sinusoidal gradient
<?php 위 예제의 출력 예시: |