Quote:
Originally Posted by ukdalai
is the issue with thumbs being black about GD library, i have support for jpg, but only creation for gif, can i change anything to make it create gifs not jpg's, this is from my phpinfo
|
I think it can be possible but have never tested
Modify function
build_thumbnail in media_function_build.php:
Replace
PHP Code:
imagejpeg($newImage, $target, $quality);
with
PHP Code:
imagegif($newImage, $target);
and replace in all code '.jpg' with '.gif'