本文介绍了PHP sharpness卷积martix的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 对于 PHP GD 的清晰度,我想更改清晰度级别。
I'm using a convolution matrix for sharpness in PHP GD and I want to change the sharpness "level".
如果我想或多或少地,我会对此进行更改?
$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);
推荐答案
尝试查看 http://www.gamedev.net/reference/programming/features/imageproc/page2.asp
网上有很多例子,但根据经验,您可以先在GIMP或PS或任何其他具有此功能的编辑器中尝试这些参数(图像卷积很常见)
There are lots of examples on the web, but as a rule of thumb you may try these params first in GIMP or PS or any other editor that has this function (image convolution is pretty common)
这篇关于PHP sharpness卷积martix的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!