|
Posted by Rik on 02/12/07 11:11
On Mon, 12 Feb 2007 12:02:50 +0100, den <spamnot@not.not> wrote:
> Il Mon, 12 Feb 2007 11:59:35 +0100, Rik ha scritto:
>
>> On Mon, 12 Feb 2007 11:53:26 +0100, den <spamnot@not.not> wrote:
>>
>>> is there some functions or tips for minimize at max the quality and
>>> the kb of a image already transformed in a thumb?
>>>
>>> I have modified a photo with imagecopyresampled and
>>> imagecreatetruecolor
>>> in
>>> to a thumb;
>>> the result is a thumb with sides of 100px and file dimension 3-4kb;
>>> is possible to reduce more the kb?
>>
>> http://www.php.net/imagejpeg
>>
>> bool imagejpeg ( resource $image [, string $filename [, int $quality]] )
>>
>> Quality
>>
>> quality is optional, and ranges from 0 (worst quality, smaller file) to
>> 100 (best quality, biggest file). The default is the default IJG quality
>> value (about 75).
>
> this function is only for Jpeg ?
> imagegif and imageong haven't this option quality;
Once again, read the manual:
http://www.php.net/imagepng
bool imagepng ( resource $image [, string $filename [, int $quality [, int
$filters]]] )
quality
Compression level: from 0 (no compression) to 9.
(5.1.2 Added the quality parameter.)
> I must tested but for your experience if I have a small image (thumb) of
> only 3-4kb is possible to reduce further on the kb?
Yes, it's possible. The quality will suffer offcourse, it all depends on
your needs wether this is acceptable.
--
Rik Wasmus
Navigation:
[Reply to this message]
|