Questions tagged «compression»

1
为特定的自定义图像尺寸设置JPEG压缩
我使用了各种自定义图片尺寸(按add_image_size),并且使用此滤镜将JPEG压缩率设置为30%: function jpeg_quality_callback($arg) { return (int)30; } add_filter('jpeg_quality', 'jpeg_quality_callback'); 如果我没记错的话,上面的代码会将所有自定义图片大小压缩30%。现在,对于名为splash1和的两个自定义图像尺寸splash2,我想将压缩率设置为80%。这怎么可能? 或者,从30%压缩滤镜中排除那些图像大小。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.