CImage:Rows
The Rows method returns the number of rows in the CImage, which is defined as the length of axis 2. The Rows method still is supported but has been replaced by the more general Len method.
nRows = CImage:Rows() where |
nRows is the length, in pixels, of image axis 2.
On failure, this method returns 0.
Suppose that CImage I has dimension 1024 x 512 x 64. Then
|
-- returns nLen = 512 |
|
-- returns nLen = 33554432 |