Add AutoLobby tab
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Media.Imaging;
|
||||
|
||||
namespace GTAOnlineCasinoHelper.Extensions
|
||||
{
|
||||
public static class ImageExtension
|
||||
{
|
||||
|
||||
[DllImport("gdi32.dll")]
|
||||
[return: MarshalAs(UnmanagedType.Bool)]
|
||||
internal static extern bool DeleteObject(IntPtr value);
|
||||
|
||||
public static BitmapSource GetBitmapSource(this Image image)
|
||||
{
|
||||
Bitmap bitmap = new Bitmap(image);
|
||||
IntPtr bmpPt = bitmap.GetHbitmap();
|
||||
BitmapSource bitmapSource =
|
||||
System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
|
||||
bmpPt,
|
||||
IntPtr.Zero,
|
||||
Int32Rect.Empty,
|
||||
BitmapSizeOptions.FromEmptyOptions());
|
||||
|
||||
//freeze bitmapSource and clear memory to avoid memory leaks
|
||||
bitmapSource.Freeze();
|
||||
DeleteObject(bmpPt);
|
||||
|
||||
return bitmapSource;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user