不会吧,你们这样对待陈礼泉朋友?
不过在Delphi里,你不得不轻松一下,TBitmap都给你封装好了,如果你非要研究一下的话,
去看BITMAP等结构吧。
The BITMAP structure defines the type, width, height, color format, and bit values of a bitmap.
typedef struct tagBITMAP {
LONG bmType;
LONG bmWidth;
LONG bmHeight;
LONG bmWidthBytes;
WORD bmPlanes;
WORD bmBitsPixel;
LPVOID bmBits;
} BITMAP, *PBITMAP;
Members