解释(20分)

  • 主题发起人 主题发起人 yytxt
  • 开始时间 开始时间
Y

yytxt

Unregistered / Unconfirmed
GUEST, unregistred user!
今天看程序时,看到一个这样的东西:TRGBTriple
在帮助中没查到这是什么,代表什么含义,请教大家了!
另外除了帮助外,还有什么可以作为平时解疑的?
 
CONST
PixelCountMax = 32768;

TYPE
pRGBArray = ^TRGBArray;
TRGBArray = ARRAY[0..PixelCountMax-1] OF TRGBTriple;

--------------------------------------------------------------------------------
Note: TRGBTriple is defined in the Windows.PAS unit.
To step through a 24-bit bitmap and while creating a new one and
access the 3-bytes-per-pixel data, use a construct like the following:

--------------------------------------------------------------------------------
...
VAR
RowOriginal : pRGBArray;
RowProcessed: pRGBArray;

记得多看看Windows.pas单元
 
那为什么要设定PixelCountMax为32768呢?
 
那是支持的最大象素数目!
 
多人接受答案了。
 
后退
顶部