Merge pull request !4 from Optimize-AllocatePixels
This commit is contained in:
小红帽 2024-07-04 16:45:24 +00:00 committed by Gitee
commit b4a196a2b0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -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);