iliaa Sun Mar 6 12:03:44 2005 EDT
Modified files:
/php-src/ext/standard image.c
Log:
Fixed bug #29424 (width and height inverted for JPEG2000 files).
http://cvs.php.net/diff.php/php-src/ext/standard/image.c?r1=1.110&r2=1.111&ty=u
Index: php-src/ext/standard/image.c
diff -u php-src/ext/standard/image.c:1.110 php-src/ext/standard/image.c:1.111
--- php-src/ext/standard/image.c:1.110 Tue Mar 1 08:53:02 2005
+++ php-src/ext/standard/image.c Sun Mar 6 12:03:43 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: image.c,v 1.110 2005/03/01 13:53:02 sesser Exp $ */
+/* $Id: image.c,v 1.111 2005/03/06 17:03:43 iliaa Exp $ */
#include "php.h"
#include <stdio.h>
@@ -625,8 +625,8 @@
dummy_short = php_read2(stream TSRMLS_CC); /* Lsiz */
dummy_short = php_read2(stream TSRMLS_CC); /* Rsiz */
- result->height = php_read4(stream TSRMLS_CC); /* Xsiz */
result->width = php_read4(stream TSRMLS_CC); /* Ysiz */
+ result->height = php_read4(stream TSRMLS_CC); /* Xsiz */
#if MBO_0
php_read4(stream TSRMLS_CC); /* XOsiz */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php