How can I crop an image automatically through the upload process? Is there php function to do that?
I want my webpage to display the images with the same dimension from various dimension of the original images by cropping it.
Or any idea?
|
How can I crop an image automatically through the upload process? Is there php function to do that? I want my webpage to display the images with the same dimension from various dimension of the original images by cropping it. Or any idea?
| ||||
|
feedback
|
|
Automatic cropping would be difficult without knowing where is the subject. Maybe you can try to get an inner centered rectangle, like in the picture:
The first thing to do is find the original image dimensions and file type. You should not trust the image extension and instead use
Then you should build an internal PHP data structure to hold the source image in memory, so you can manipulate it, using
Next, you should allocate another data structure to hold the destination image. In this case we don't have an image to start with, so I allocate an empty image.
Next, you should copy a portion of the original image to the destination image. If you don't want to resize, use
Where $srcX is the starting X point in the source image, $srcY the starting Y point, $srcW the width to copy from the starting X point, $srcH the height of the area to be copied. Finally you can either save your image with:
or you can output it to the browser with:
If you save the image you've to think in which directory to save it, if you have lots of images (thousands or more), think a way to split them in multiple subdirectory. If you save the original image, never save images with extensions not in your list of allowed extension or it will be a huge security hole in which the attacker can send and execute any PHP code to your site. Based on the concepts described I wrote a small class:
Save the class in ImageCrop.php, sample usage:
or, to send the output directly to the browser, use | |||||||||||
feedback
|
|
Say this as
In the page where you have image
| |||||||
feedback
|