我正在寻找 php 和 GD
的“软焦点”效果的实现此处有更多信息:http://www.nickgallery.com/web_pages/technical%208.htm
Photoshop中的教程:http://www.makeuseof.com/tag/create-awesome-soft-focus-effect-photoshop-2/
我试图做类似的事情:
<?php
$image = imagecreatefromjpeg("image.jpg");
imagefilter($image, IMG_FILTER_GAUSSIAN_BLUR);
header("content-type: image/jpeg");
imagejpeg($image);
imagedestroy($image);
?>