有没有办法在 WPF 中更改 BitmapSource 的调色板?(在运行时)我尝试的每个 BitmapSource 层次结构都具有对调色板的只读访问权限。
问问题
1480 次
1 回答
0
我还没有找到一种很好的方法,但是您始终可以从原始位图重新创建位图:
如果你有:
Private myBitmap As System.Windows.Media.Imaging.WriteableBitmap
Private myCurrentPalette As List(Of Color)
然后,当您想更改调色板时,请执行以下操作:
Dim iWidth As Integer = myBitmap.Width
Dim iHeight As Integer = myBitmap.Height
Dim iPixel(iWidth * iHeight - 1) As Byte
myBitmap.CopyPixels(iPixel, iWidth, 0)
myBitmap = New WriteableBitmap(iWidth, iHeight, 96, 96, PixelFormats.Indexed8, New BitmapPalette(myCurrentPalette))
myBitmap.WritePixels(New Int32Rect(0, 0, iWidth, iHeight), iPixel, iWidth, 0)
然后你需要申请:
Image1.Source = myBitmap
于 2012-12-26T19:31:54.967 回答