PHP netlik evrişim martix

0 Cevap php

Ben bir convolution matrix for sharpness in PHP GD kullanıyorum ve keskinliğini değiştirmek istiyorum "level".

Ben yapmak için make changes Bu nereye isterim eğer more or less sharp?

$image = imagecreatefromjpeg('pic.jpg');

$matrix = array(
  array(0, -1, 0), 
  array(-1, 5, -1), 
  array(0, -1, 0)
);

imageconvolution($image, $matrix, 1, 0.001);
header("Content-type: image/jpeg");
imagejpeg($image);

0 Cevap