admin管理员组

文章数量:1395780

When uploading image files to the Wordpress media library the colors are occasionally distorted.

This is especially noticeable in the blue tones. I think it is due to a missing conversion of the color space.

Does anyone know what is the solution?

When uploading image files to the Wordpress media library the colors are occasionally distorted.

This is especially noticeable in the blue tones. I think it is due to a missing conversion of the color space.

Does anyone know what is the solution?

Share Improve this question edited Mar 9, 2020 at 16:24 fuxia 107k39 gold badges255 silver badges459 bronze badges asked Mar 9, 2020 at 7:38 quikinaquikina 232 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You must use standard color profiles, and convert your color profile to sRGB (in Photoshop -> Save for the web -> convert to sRGB checkbox).

You should also set quality compression to 100

add_filter('jpeg_quality', function($arg){return 100;});

本文标签: How do I avoid color distortion of uploaded images