Reputation: 13
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?
Upvotes: 0
Views: 81
Reputation: 13725
Check this function's third argument:
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).
Upvotes: 2