我有BitmapSource
1690x214(取自使用this代码的EMF文件),我想将此图像用作ToolTip
。这是使用Paint:
所以我写了这段代码:
BitmapSource bmp = myBitmapSource; // "Dk01Light.EMF"
Image img = new Image()
{
Source = bmp,
Width = bmp.Width,
Height = bmp.Height,
Stretch = Stretch.Uniform,
};
myTooltip = img;
这就是结果:
如您所见,右侧和底部边距完全不同。为什么?我该如何解决这个问题?
答案 0 :(得分:2)
这似乎是一个DPI问题。首先尝试从Image初始值设定项中删除宽度和高度。它的大小也应适合其内容。
您也可以尝试使用以下内容替换您链接的代码,以确保正确生成图像:
using (System.Drawing.Imaging.Metafile emf = new System.Drawing.Imaging.Metafile(path))
using (System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(emf.Width, emf.Height))
{
bmp.SetResolution(emf.HorizontalResolution, emf.VerticalResolution);
using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(bmp))
{
g.DrawImage(emf,
new Rectangle(0, 0, emf.Width, emf.Height),
new Rectangle(0, 0, emf.Width, emf.Height),
GraphicsUnit.Pixel
);
return System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(bmp.GetHbitmap(), IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
}
}