I need a script that will reduce image file size for thumbnails. Right now I have thumbnails but they're still the original file size, which is dumb of course as its heavy on resources. How can I do this? Thanks in advance
Just created one for you, and community members, because it is the frequently requested one. Please download here: http://forums.digitalpoint.com/showthread.php?t=917621 regards
phpthumb uses imagick, but our source is based on GD only. GD is smaller than imagick. I will add BMP, ICO, ANI, CUR support within same script, without using anything other than GD. regards
do a search about this build in php function imagejpeg() imagegif() example: imagejpeg( resource $image [, string $filename [, int $quality]] ) When you reduce the image quality value it's reduce the image size as well. imagejpeg($imgdev,$path,60); hope it's help.
Well, actually that what this script already does, review the source please. http://forums.digitalpoint.com/showthread.php?t=917621 I was actually talking about adding more image formats support. Thanks for your kind reply. regards