php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #30281 returned size for WBMP is always 1x0
Submitted: 2004-09-29 21:25 UTC Modified: 2004-10-04 22:44 UTC
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:1 (50.0%)
From: spam at batz dot org Assigned:
Status: Closed Package: GetImageSize related
PHP Version: 5.0.1 OS: Windows XP
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: spam at batz dot org
New email:
PHP Version: OS:

 

 [2004-09-29 21:25 UTC] spam at batz dot org
Description:
------------
getimagesize returns always 1 as width and 0 as height for WBMP pictures. problem occurs on 4.3.8 and 4.3.9 as well.
WBMP/ICO can hold multiple frames with different sizes.


Reproduce code:
---------------
$imageinfo = getimagesize('favicon.ico');
echo "width:{$imageinfo[0]}<br>";
echo "height:{$imageinfo[1]}<br>";
echo "imagetype:{$imageinfo[2]}<br>";
echo "to show that the size is wrong:<br>";
echo "<img src=\"favicon.ico\">";

Expected result:
----------------
width:16
height:16
imagetype:15
to show that the size is wrong:
IMAGE

Actual result:
--------------
width:1
height:0
imagetype:15
to show that the size is wrong:
IMAGE

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-09-30 03:16 UTC] iliaa@php.net
Please supply the image used.
 [2004-10-04 18:35 UTC] spam at batz dot org
Any file in ICO-format should do it. But you can just use http://www.favicon.com/favicon.ico as sample.
 [2004-10-04 22:44 UTC] iliaa@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 17:01:58 2024 UTC