When I place an image in a FlowDocument, it appears to always be scaled or rendered incorrectly.
Is this a bug, how can I "fix" it?
The following snippet is a XamlPad ready illustration of the problem. I'm running Vista RC1 with the normal 96 DPI setting. The image on the right (in the FlowDocument) is always scaled/blurry.
- Doug
<StackPanel Orientation="Horizontal" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Image SnapsToDevicePixels="True" Source="http://www.microsoft.com/typography/cleartype/sbs.gif" StretchDirection="DownOnly" />
<FlowDocumentScrollViewer>
<FlowDocument>
<Paragraph>
<Image SnapsToDevicePixels="True" Source="http://www.microsoft.com/typography/cleartype/sbs.gif" StretchDirection="DownOnly" />
</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
</StackPanel>