Declaration
property FrameCount: Integer;
Description
Returns the total number of frames in the image.
Read-only
Example
wic := TIEWICReader.Create();
wic.Open( 'C:\input.tiff' );
fCount := wic.FrameCount;
for i := 0 to fCount - 1 do
wic.GetFrame(i, bitmap[i]);
wic.Free();