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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top