How to sharpening an uploaded image in PHP ?
Is there some PHP libraries ? What is the best ?
|
How to sharpening an uploaded image in PHP ? Is there some PHP libraries ? What is the best ? |
|||||||||
|
|
ImageMagick offers best quality and lot of other features. Use
|
|||
|
|
|
You can use ImageMagick. This call is one good solution |
|||
|
|
|
Here's an unsharp mask for PHP. (Unsharp mask is one of the most common types of sharpening used.) Here's another option (using GD). |
|||
|
|
|
In this PHP Manual comment, someone is referring to function imageconvolution(), complete with an example. |
|||
|
|
|
The most straightforward way is to use PHP's |
|||