我需要将System.Drawing.Bitmap转换为System.Windows.Media.Imaging.BitmapSource。
问题是我的位图有一个自定义调色板,我需要将它传递给CreateBitmapSourceFromHBitmap方法。
如何获取位图调色板的指针(IntPtr)?
感谢。
IntPtr hBitmap = bitmap.GetHbitmap();
BitmapSource bmpSrc = CreateBitmapSourceFromHBitmap(hBitmap,
????,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());