php thumbnail creation

Soldato
Joined
6 Feb 2004
Posts
20,856
Location
England
i have a script that resizes images but the quality of the thumbnail isn't as good as those i've seen around on other sites. do other image uploaders use php or do they use something else?

edit: links removed. it's been fixed below. :)
 
Last edited:
i'm assuming you're outputting using imagejpeg/imagegif/imagepng?

bool imagejpeg ( resource $image [, string $filename [, int $quality]] )

last argument can be between 0 (being worst quality, small files) and 100 (best quality, large files)
 
yup, i am using imagejpeg. just tried changing it to 100 and still no better. not that it matters at all, i was just wondering how other sites do it better?
 
Last edited:
"Native" PHP functions rely on the GD library to compile the new images, one assumes they have a better library for it. I do not know of any such library.
 
Back
Top Bottom