Faq-O-Matic Faq-O-Matic : Administrators' Guide : In Development :
How to upgrade to GD library greater version 1.3 ? | |
The GD library version greater 1.3 does not support Gif as imagefile
anymore because of patent problems with Unisys. The patch below converts
generation of gifs to generation of png image files. These are supportet
by all newer webbrowser. Use the patch with the statgraph.pm file in
the subdirectory FAQ-OMatic-2.709/lib/FAQ/OMatic After the patch the statistics page is viewed with png images instead of gif images. This is a quick hack. I don't know if there are other images genareted elsewhere. Maybe the "main" developer should think about changing the image format to png. Marco Schmidt patch: 72c72 < print $image->gif; --- > print $image->png; 136c136 < '-type' => "image/gif", --- > '-type' => "image/png", 332,333c332,333 < # send GIF < print $image->gif(); --- > # send png > print $image->png(); | |
[Append to This Answer] |
Previous: | Tracking errors |
Next: | Others projects based on FAQ-O-Matic |
|