You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace KGIS.Plugin.LayerProperty.Model
|
|
|
|
|
{
|
|
|
|
|
public struct RECT
|
|
|
|
|
{
|
|
|
|
|
public int Left_Renamed;
|
|
|
|
|
public int Top;
|
|
|
|
|
public int Right_Renamed;
|
|
|
|
|
public int Bottom;
|
|
|
|
|
}
|
|
|
|
|
public struct SIZE
|
|
|
|
|
{
|
|
|
|
|
public int X;
|
|
|
|
|
public int Y;
|
|
|
|
|
}
|
|
|
|
|
public struct POINTAPI
|
|
|
|
|
{
|
|
|
|
|
public int X;
|
|
|
|
|
public int Y;
|
|
|
|
|
}
|
|
|
|
|
public struct BITMAPINFO
|
|
|
|
|
{
|
|
|
|
|
public BITMAPINFOHEADER bmiHeader;
|
|
|
|
|
public RGBQUAD bmiColors;
|
|
|
|
|
}
|
|
|
|
|
public struct BITMAPINFOHEADER
|
|
|
|
|
{
|
|
|
|
|
public int biSize;
|
|
|
|
|
public int biWidth;
|
|
|
|
|
public int biHeight;
|
|
|
|
|
public short biPlanes;
|
|
|
|
|
public short biBitCount;
|
|
|
|
|
public int biCompression;
|
|
|
|
|
public int biSizeImage;
|
|
|
|
|
public int biXPelsPerMeter;
|
|
|
|
|
public int biYPelsPerMeter;
|
|
|
|
|
public int biClrUsed;
|
|
|
|
|
public int biClrImportant;
|
|
|
|
|
}
|
|
|
|
|
public struct RGBQUAD
|
|
|
|
|
{
|
|
|
|
|
public byte rgbBlue;
|
|
|
|
|
public byte rgbGreen;
|
|
|
|
|
public byte rgbRed;
|
|
|
|
|
public byte rgbReserved;
|
|
|
|
|
}
|
|
|
|
|
}
|