Question

Is there any way in PHP to reduce quality of a JPG image in order to reduce its file size instead of resizing its dimensions?

Was it helpful?

Solution

Check this function's third argument:

http://php.net/imagejpeg

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).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top