smooth() 공개 정적인 메소드

public static smooth ( integer $smooth ) : integer
$smooth integer
리턴 integer
예제 #1
0
파일: Filter.php 프로젝트: JBZoo/Image
 /**
  * Smooth effect
  *
  * @param resource $image  Image GD resource
  * @param int      $passes Number of times to apply the filter (1 - 2048)
  */
 public static function smooth($image, $passes = 1)
 {
     imagefilter($image, IMG_FILTER_SMOOTH, Helper::smooth($passes));
 }