位图数据
Global Const $tagGDIPBITMAPDATA = "uint Width;uint Height;int Stride;uint Format;ptr Scan0;ptr Reserved"
参数
| Width | Number of pixels in one scan line of the bitmap |
| Height | Number of scan lines in the bitmap |
| Stride | Offset, in bytes, between consecutive scan lines of the bitmap. If the stride is positive, the bitmap is top-down. If the stride is negative, the bitmap is bottom-up |
| Format | 指定位图像素格式 |
| Scan0 | Pointer to the first (index 0) scan line of the bitmap |
| Reserved | Reserved for future use |
注意/说明
None.
相关