I’m working on an Umbraco 13.5 website and have noticed a decline in image clarity when uploading images to the Media section.
What surprised me is that after sharing the media link with my team, some members received a compressed version of the image, while others saw the original high-quality image.
Has anyone encountered this behavior before? Any idea what might be causing it?
Someone correct me if I’m wrong, but I think Umbraco does two things:
Upload the media (in this case an image) as-is. I don’t think by default that there is any image manipulation during upload.
Not sure if it’s still the case, but Umbraco would generate a lower quality image for displaying in the backoffice.
So if you have the link to the media item directly (like https://website.com/media/abcde/image.jpg) you should get the original, unaltered version. However, if you apply some transformations using querystrings ImageSharp will generate a different image and perform stuffs on the image.
If everyone has the same link, linking directly to the image file, everybody should get the original image. If they link to the ‘thumbnail’ version, the quality is less and if you use querystring parameters and let ImageSharp do it’s thing, you might get different results.