Author Topic: CRAPPY LOOKING THUMBNAILS!  (Read 10995 times)

0 Members and 1 Guest are viewing this topic.

Offline rah

  • Newbie
  • *
  • Posts: 21
    • View Profile
CRAPPY LOOKING THUMBNAILS!
« 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?

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
CRAPPY LOOKING THUMBNAILS!
« Reply #1 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.
« Last Edit: April 04, 2005, 02:09:09 AM by V@no »
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline rah

  • Newbie
  • *
  • Posts: 21
    • View Profile
CRAPPY LOOKING THUMBNAILS!
« Reply #2 on: February 10, 2003, 06:09:17 PM »
Thanks alot, it works fine now!