Is it possible to remove the whitespace surrounding an image in PHP?
NOTE: to clarify I mean something like photoshops trim feature.
Thanks.
|
|
|
To trim all whitespace, as you call it, surrounding the interesting part of the image, first we find out where the "whitespace" stops, and then we copy everything inside of those borders.
My old example, that assumes an identical "border" on all sides of the image, just to clarify the comments :)
|
|||||||||||
|
|
An improvement to gnud's script - Calling imagesx, imagesy, and repeating right-side-, left-side-calculations were bogging the original code down. This new code block represents a 50% increase in speed optimization over the original post. The function returns false if every pixel would be trimmed (if every one is the trim color).
|
||||
|
|
|
Check out the ImageMagick library in PHP. It has good methods of working with and manipulating images (including crop). You'll have to figure out where the "whitespace" is around the image. It could be challenging, since "whitespace" could be the color white, some other color, transparency, etc... |
|||
|
|
|
I know this is pretty old but if you have ImageMagick enabled you can use this method |
|||
|
|