4images Forum & Community

4images Issues / Ausgaben => Installation, Update & Configuration => Topic started by: rah on February 10, 2003, 04:02:43 PM

Title: CRAPPY LOOKING THUMBNAILS!
Post 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?
Title: CRAPPY LOOKING THUMBNAILS!
Post by: V@no on February 10, 2003, 04:57:23 PM
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.
Code: [Select]
<?php
phpinfo
();
?>
if it's GD version 2, then open /includes/constants.php find
Code: [Select]
define('CONVERT_IS_GD2', 0); change it to
Code: [Select]
define('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.
Title: CRAPPY LOOKING THUMBNAILS!
Post by: rah on February 10, 2003, 06:09:17 PM
Thanks alot, it works fine now!