You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
623 B
C#
32 lines
623 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GeoSigmaDrawLib
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class MemoryImage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the BMP.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The BMP.
|
|
/// </value>
|
|
public Bitmap Bmp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图像句柄.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The buffer.
|
|
/// </value>
|
|
public IntPtr BmpHandle { get; set; }
|
|
}
|
|
}
|