|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-07-01 03:01 UTC] ssb
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jun 15 14:00:01 2026 UTC |
in file functions/gd.c, line 436 RETURN_LONG(im->pixels[x->value.lval][y->value.lval]); should be replaced by #if HAVE_LIBGD13 RETURN_LONG(im->pixels[y->value.lval][x->value.lval]); #else RETURN_LONG(im->pixels[x->value.lval][y->value.lval]); #endif to make it compatible with gd 1.3