ตัวอย่างการสร้างภาพขาว-ดำ (Gray)
ไฟล์ code/image/gray.php
<?php
header('Content-Type: image/jpeg');
$im = imagecreatefromjpeg('https://phpmysql.khonsongkhla.com/img/html/bootstrap-pic/MzHy4.jpg');
imagefilter($im, IMG_FILTER_GRAYSCALE);
imagefilter($im, IMG_FILTER_CONTRAST, -10);
imagejpeg($im, null);
imagedestroy($im);
?>คำสั่ง html
<img src="/code/php/gray.php">ผลลัพธ์