BitMiracle.LibTiff.Classic.Tiff.RawTileSize C# (CSharp) Method

RawTileSize() public method

Computes the number of bytes in a raw (i.e. not decoded) tile.
public RawTileSize ( int tile ) : long
tile int The zero-based index of a tile.
return long
        public long RawTileSize(int tile)
        {
            // yes, one method for raw tile and strip sizes
            return RawStripSize(tile);
        }
Tiff