php - Best way to blur images

前端 未结 3 1837
鱼传尺愫
鱼传尺愫 2021-01-02 18:53

I\'m trying to blur first image like third one,But I cant do it ! :(

 header(\'Content-Type: image/jpeg\');
$image = imagecreatefromjpeg(\'1.jpg\');
for ($x=         


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-02 19:34

    easy

    header('Content-Type: image/jpeg');
    $image = imagecreatefromjpeg('1.jpg');
    
    $image = imagescale($image , $YOU_IMG_WIDTH/40, $YOU_IMG_WIDTH/40);
    imagefilter($image, IMG_FILTER_GAUSSIAN_BLUR);
    $image = imagescale($image , $YOU_IMG_WIDTH, $YOU_IMG_HEIGHT);
    
    imagejpeg($image);
    imagedestroy($image);
    

提交回复
热议问题