By cloe123 on
what should i do on this error?
warning: imagecolorsforindex() [function.imagecolorsforindex]: Color index 255 out of range in /sites/all/modules/imageapi/imageapi_gd.module on line 139.
thanks in advance
cloe
what should i do on this error?
warning: imagecolorsforindex() [function.imagecolorsforindex]: Color index 255 out of range in /sites/all/modules/imageapi/imageapi_gd.module on line 139.
thanks in advance
cloe
Comments
I am getting the same error,
I am getting the same error, just saw it today. would appreciate any help.
it is still my problem...i
it is still my problem...i dont know how i will fixed it.
hope someone will response..
thanks
Here is the solution
Replace
if ($transparency_index >= 0) {
with
if ($transparency_index >= 0 && $transparency_index <255) {
in includes/image.inc
AND
Replace
if ($transparent >= 0) {
with
if ($transparent >= 0 && $transparent < 255) {
in imageapi_gd.module
This is a core hack? It
This is a core hack?
It would be nice to come up with something more Drupal-ly to fix this.
no it is a module hack, not a
no it is a module hack, not a core hack, imageapi and image are addon modules not core modules