I am working on a script that uploads a picture using PHP and I wanna make it resize the image to width 180 before saving it.
I tried using the WideImage library and ->saveFileTO(…) but when I include the WideImage.php in the page, the page goes blank !!
So here is my script if you can help me and tell me how to make it save the resized version
I am working on a script that uploads a picture using PHP and I
Share
You can use the PHP GD library to resize an image on upload.
The following code should give you an idea of how to implement the resize: