Update BitmapUtils.cs

This commit is contained in:
Namhyeon Go 2024-05-13 16:54:17 +09:00
parent 24dcfdb2cc
commit 2edda2b710

View File

@ -47,6 +47,8 @@ namespace WelsonJS
int width = bitmap.Width; int width = bitmap.Width;
int height = bitmap.Height; int height = bitmap.Height;
bitmap.Dispose();
return new int[] { width, height }; return new int[] { width, height };
} }