|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-03-18 12:29 UTC] iliaa@php.net
[2004-03-18 13:18 UTC] mito at nic dot fi
[2004-03-18 13:25 UTC] mito at nic dot fi
[2004-03-18 13:29 UTC] pajoye@php.net
[2004-03-18 14:54 UTC] mito at nic dot fi
[2016-11-22 23:51 UTC] phpbugs at juracid dot co dot uk
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 28 20:00:01 2025 UTC |
Description: ------------ When calling imagecreatefromjpeg("image.jpg"); where image.jpg is 1200x1600 pixels of size it causes an internal server error with no actual error output just a plank page. I'm not sure if it's because the picture is too high or does it occur every time if the height is larger than width. I tested with many similar jpgs that were produced in same way ( same digicam ), but were 1600x1200 and it worked fine. I also tested the same code in 4.3.2 running on Windows and it worked fine with both sizes of picture. Reproduce code: --------------- <?php $im = imagecreatefromjpeg("badsanta.jpg"); print "Done!"; ?> See it at: http://mindanao.globat.com/~hopea.net/errortest/ Expected result: ---------------- Done! Actual result: -------------- 500 Internal system error and a blank page (in IE).