尝试了解 WPF 并使用图像。我有 RichTextBox ,宽度为665。例如,我正在加载图像(5400x2700、32位,96dpi)。我认为我应该做这样的事情:
bitmap.BeginInit();
bitmap.StreamSource = memorystream;
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.DecodePixelWidth = 700;
bitmap.EndInit();
但是,如果我设置bitmap.DecodePixelWidth = 1900
,则图像会更清晰。
如何正确设置 DecodePixelWidth ?