📜  imagick() - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:46.449000             🧑  作者: Mango

代码示例1
Here's a example of this function:



readImage($image_file_name);

  // leave hue at 100%, drop saturation by 100%, leave brightness at 100%

  $img->modulateImage(100, 0, 100); 

  $img->writeImage($thumb_file_name);

  $img->clear();

  $img->destroy();

?>