We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resizing an image should not change its color profile
Resizing a Display P3 image results in an sRGB IEC61966-2.1 image that looks different, i.e., more muted/duller/less contrast than the original
Display P3
sRGB IEC61966-2.1
// Initial image-01 begins as "Display P3" // Resulting image-02 ends up as "sRGB IEC61966-2.1" Jimp.read("image-01.jpg") .then(file => { return file .resize(2000, Jimp.AUTO) .quality(80) .write("image-02.jpg"); })
IF YOUR ISSUE DEPENDS ON A PARTICULAR IMAGE BE SURE TO INCLUDE THIS AS WELL. WE CAN'T REPRODUCE IF WE DON'T HAVE YOUR IMAGE
Input: image-01.jpg
Output: image-02.jpg
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
Resizing an image should not change its color profile
Current Behavior
Resizing a
Display P3
image results in ansRGB IEC61966-2.1
image that looks different, i.e., more muted/duller/less contrast than the originalSteps to Reproduce
IF YOUR ISSUE DEPENDS ON A PARTICULAR IMAGE BE SURE TO INCLUDE THIS AS WELL. WE CAN'T REPRODUCE IF WE DON'T HAVE YOUR IMAGE
Input: image-01.jpg
Output: image-02.jpg
Context
The text was updated successfully, but these errors were encountered: