From:             bfra...@php.net
Operating system: 
PHP version:      5.3.1
PHP Bug Type:     Feature/Change Request
Bug description:  Add getimagesizefromstring

Description:
------------
It would be nice to be able to pass in a string to getimagesize.

Here is a patch that takes the original getimagesize function and turns it
into php_getimagesize_from_stream.  Then getimagesize and a new function
getimagesizefromstring can use the function once a stream is created.

http://www.brianfrance.com/software/php/getimagesizefromstring.diff



Reproduce code:
---------------
<?PHP
$img = 'test.gif';

var_dump(getimagesize($img));

$data = file_get_contents($img);

var_dump(getimagesizefromstring($data));
?>



-- 
Edit bug report at http://bugs.php.net/?id=51063&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=51063&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=51063&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=51063&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=51063&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=51063&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=51063&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=51063&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=51063&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=51063&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=51063&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=51063&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=51063&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=51063&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=51063&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=51063&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=51063&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=51063&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=51063&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=51063&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=51063&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=51063&r=mysqlcfg

Reply via email to