cvs: gd /libgd ISSUES gd_topal.c
[email protected] ("Pierre-Alain Joye")
| Newsgroups | php.gd.cvs |
|---|---|
| Message-ID | <cvspajoye1167851640@cvsserver> |
pajoye Wed Jan 3 19:14:00 2007 UTC
Modified files:
/gd/libgd gd_topal.c ISSUES
Log:
- #15, gdImageCreatePaletteFromTrueColor(), colors allocated henceforth from
the resulting image overwrite the palette colors (Rob Leslie)
http://cvs.php.net/viewvc.cgi/gd/libgd/gd_topal.c?r1=1.12&r2=1.13&diff_format=u
Index: gd/libgd/gd_topal.c
diff -u gd/libgd/gd_topal.c:1.12 gd/libgd/gd_topal.c:1.13
--- gd/libgd/gd_topal.c:1.12 Wed Jan 3 18:31:45 2007
+++ gd/libgd/gd_topal.c Wed Jan 3 19:14:00 2007
@@ -772,6 +772,7 @@
nim->green[icolor] = 255;
nim->blue[icolor] = 255;
}
+ nim->open[icolor] = 0;
#endif
}
http://cvs.php.net/viewvc.cgi/gd/libgd/ISSUES?r1=1.13&r2=1.14&diff_format=u
Index: gd/libgd/ISSUES
diff -u gd/libgd/ISSUES:1.13 gd/libgd/ISSUES:1.14
--- gd/libgd/ISSUES:1.13 Wed Jan 3 18:31:45 2007
+++ gd/libgd/ISSUES Wed Jan 3 19:14:00 2007
@@ -33,3 +33,5 @@
CTX (Takeshi Abe)
#13, remove generated files from cvs, add bootstrap script
#14, Fixed leak in jinit_2pass_quantizer (gd_topal.c)
+#15, gdImageCreatePaletteFromTrueColor(), colors allocated henceforth from
+ the resulting image overwrite the palette colors (Rob Leslie)