This is a discussion on Digital Picture Auto Correction in PHP? within the PHP Language forums, part of the PHP Programming Forums category; Hi All, Is there any script or dll that allows me to do auto correction to digital pictures from PHP? ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Ehud Banai wrote:
> Hi All, > > Is there any script or dll that allows me to do > auto correction to digital pictures from PHP? > > Thanks in advance, > Ehud Well, I have no clue what 'auto correcting' is in your book. But if you need imagemanipulation functions, go check the GD lib. It is available on *nix and W$. Just go to www.php.net for details: http://nl3.php.net/manual/en/ref.image.php To check if you already have the GD libs compiled in/linked just ask phpinfo() and look for GD. Note: Beware of the version of GD: Older GD libs (<2) cannot do what the modern ones can (like truecolor, alphachannels, etc). If you have a version >2, you are fine. Regards, Erwin Moller |
|
|||
|
Thanks...
I ment auto level and auto white balance by 'auto correction'... I will check this library, look very promising! "Ian McConnell" <ian@emit.demon.co.uk> wrote in message news:873b7t8gmj.fsf@emit.demon.co.uk... > "Ehud Banai" <mrwebmaster@walla.com> writes: > > > Is there any script or dll that allows me to do > > auto correction to digital pictures from PHP? > > Have a look at phpthumb > http://phpthumb.sourceforge.net/ > > # Unsharp Mask sharpening can be applied thanks to Torstein Hønsi's phpUnsharpMask function. > # Other filters: > > * Alpha channel mask from mask file > * Auto Contrast / Levels > * Bevel edge > * Blur > * Brightness > * Colorize to target color by amount > * Contrast > * Drop shadow > * Edge Detect > * Flip Horizontal / Vertical > * Gamma > * Grayscale > * Mean Removal > * Negative color > * Reduce Color Depth > * Rounded Corners > * Saturation > * Sepia > * Smooth > * Threshold > * White Balance |