-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
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
[ImageResizer] Fix blurry images in some cases #32797
base: main
Are you sure you want to change the base?
Conversation
Fixes microsoft#10675 In some cases a resized image becomes very blurry. Loading the input image file into cache in BitmapDecoder resolves the blurriness. --- I tried to find the technical reason why caching resolves it, or why it is blurry in the first place, but was unable to locate it. The issue seems to occur only on specific images. I was not able to identify a strong parameter that would cause it. Nevertheless, with the images I will attach to the PR, I hope to make an evident case for the factual resolution of the issue. And maybe or hopefully someone with more knowledge about the respective used APIs will be able to provide the factual, technical reason for it. --- `ResizeOperation` uses `BitmapDecoder` to load the image file. In main the decoder is instantiated with `BitmapCacheOption.None`. Changing it to `BitmapCacheOption.OnLoad` resolves the issue. The pass-along of image data is as follows: 1. create decoder 2. decoder -> image file metadata 3. decoder -> `BitmapFrame` -> `TransformedBitmap` -> `BitmapFrame` -> encoder (`Frames.Add()`) -> `encoder.Save()` --- [transformdoc] mentions the following about loaded cached image data potentially mismatching target pixel size, which made me wonder whether the no-cache delayed reading in combination with the transformation leads to reduced-size-reading. I was not able to confirm it. Given that most images I tested did not have a problem, I don't think it's a plausible cause. > If you don't do this, the application will cache the image as though it were rendered as its normal size rather than just the size that is displayed. [transformdoc]: https://learn.microsoft.com/en-us/dotnet/desktop/wpf/graphics-multimedia/how-to-apply-a-transform-to-a-bitmapimage --- For multiple test images, any differences were hard to spot, they did not result in blurriness. The image I had issues with in the past being very colorful made me wonder whether amount of color information could make the difference. But with the technical context, that would only make sense if the encoder caching somehow handled color information differently, which seems unlikely too.
Given that I don't have a full technical explanation why this works, I'm creating this PR as a draft. I'm looking for feedback whether this would be fine, or for help in explaining why it resolves it. |
Hi @Kissaki , |
@Kissaki |
That seems like a reasonable workaround/implementation. |
Summary of the Pull Request
In some cases a resized image becomes very blurry.
Loading the input image file into cache in BitmapDecoder resolves the blurriness.
PR Checklist
Tests: Added/updated and all passLocalization: All end user facing strings can be localizedNew binaries: Added on the required placesDetailed Description of the Pull Request / Additional comments
I tried to find the technical reason why caching resolves it, or why it is blurry in the first place, but was unable to locate it.
The issue seems to occur only on specific images. I was not able to identify a strong parameter that would cause it.
Nevertheless, with the images I will attach to the PR, I hope to make an evident case for the factual resolution of the issue. And maybe or hopefully someone with more knowledge about the respective used APIs will be able to provide the factual, technical reason for it.
ResizeOperation
usesBitmapDecoder
to load the image file. In main the decoder is instantiated withBitmapCacheOption.None
. Changing it toBitmapCacheOption.OnLoad
resolves the issue.The pass-along of image data is as follows:
BitmapFrame
->TransformedBitmap
->BitmapFrame
-> encoder (Frames.Add()
) ->encoder.Save()
transformdoc mentions the following about loaded cached image data potentially mismatching target pixel size, which made me wonder whether the no-cache delayed reading in combination with the transformation leads to reduced-size-reading. I was not able to confirm it. Given that most images I tested did not have a problem, I don't think it's a plausible cause.
For multiple test images, any differences were hard to spot, they did not result in blurriness. The image I had issues with in the past being very colorful made me wonder whether amount of color information could make the difference. But with the technical context, that would only make sense if the encoder caching somehow handled color information differently, which seems unlikely too.
Validation Steps Performed
Manual tests with multiple image files with variance. I will attach test cases in the following comment.