4images Forum & Community
4images Issues / Ausgaben => Installation, Update & Configuration => Topic started by: rah on February 10, 2003, 04:02:43 PM
-
I use gd as my thumbnail creator. If you look at the following page:
http://www.bazodeecentral.com/bcgallery/categories.php?cat_id=16
You would see how crappy the images comes out; the full pictures are fine though. Can anyone help me figure out what the problem is?
-
if your host has GD1 not GD2, u wont get any better then this... 8O
ask them or run this script to see what version of GD they have installed.<?php
phpinfo();
?>
if it's GD version 2, then open /includes/constants.php finddefine('CONVERT_IS_GD2', 0);
change it todefine('CONVERT_IS_GD2', 1);
If it's GD1, then the only sollution is ImageMagick or NetPBM witch is also must be installed by your host.
-
Thanks alot, it works fine now!