Patch gd.patch for GD related Bug #61221
Patch version 2012-03-01 14:57 UTC
Return to Bug #61221 |
Download this patch
Patch Revisions:
Developer: efbiaiinzinz@hotmail.com
3181c3181
< gdTrueColor(
---
> gdTrueColorAlpha(
3184c3184,3185
< (int) ((pow((pow((gdTrueColorGetBlue(c) / 255.0), input)), 1.0 / output) * 255) + .5)
---
> (int) ((pow((pow((gdTrueColorGetBlue(c) / 255.0), input)), 1.0 / output) * 255) + .5),
> (int) ((pow((pow((gdTrueColorGetAlpha(c) / 127.0), input)), 1.0 / output) * 127) + .5)
3195a3197
> im->alpha[i] = (int)((pow((pow((im->alpha[i] / 127.0), input)), 1.0 / output) * 127) + .5);
|