Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到每次我在 PHP 中保存 jpg 文件时,都会使用子采样保存它。如何删除它?我正在使用 GD 库。
如果您将质量设置为 90 或更高,我相信较新版本的libgd禁用色度子采样。
libgd
如果做不到这一点,您可以考虑使用PHP Imagick并禁用色度子采样:
$img->setSamplingFactors(array('1x1', '1x1', '1x1'));