Reputation: 4900
I've tested the BitmapScalingMode but could not see any better result with maximum quality (Fant, Fantastic) to HighQuality. Now I see the values behind are the same. this is an bug of Microsofts Framework?
// Set the bitmap scaling mode for the image to render faster.
RenderOptions.SetBitmapScalingMode(MyImage, BitmapScalingMode.LowQuality);
Upvotes: 1
Views: 535
Reputation: 292695
Fant
and HighQuality
are synonyms, as indicated in the documentation...
The LowQuality mode is the same as the Linear mode.
...
The HighQuality mode is the same as the Fant mode.
So no, it's not a bug. It works as designed.
Upvotes: 4