mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
commit
b4a196a2b0
@ -126,8 +126,8 @@ namespace CPF.Skia
|
||||
BITMAP BITMAP = new BITMAP();
|
||||
UnmanagedMethods.GetObject(hbitmap, Marshal.SizeOf(typeof(BITMAP)), BITMAP);
|
||||
|
||||
var bitmap = new SKBitmap(BITMAP.bmWidth, BITMAP.bmHeight);
|
||||
bitmap.SetPixels(BITMAP.bmBits);
|
||||
var bitmap = new SKBitmap();
|
||||
bitmap.InstallPixels(new SKImageInfo(BITMAP.bmWidth, BITMAP.bmHeight, SKImageInfo.PlatformColorType), BITMAP.bmBits, BITMAP.bmWidthBytes);
|
||||
|
||||
this.bitmap = bitmap;
|
||||
canvas = new SKCanvas(this.bitmap);
|
||||
|
Loading…
Reference in New Issue
Block a user