I have a script to resize an uploaded image, but when I use it, it just returns a black square. All error messages are pointing at this function:
function resize
imagecreatetruecolor
succeeded. If the new image is "large" it could exceed the PHP memory_limit. This function returns FALSE if it failed for any reason.imagecreatefromjpeg()
. The two individual images may fit within the memory limit but together could be too large. The source image may also not exist. This function returns FALSE if it failed for any reasonimagecopyresampled()
failed - it also returns FALSE on failure.imagejpeg()
failed - maybe you don't have write permissions on whatever file you're specifying in $image
. And again, this function returns FALSE on failure.