BitMiracle.LibTiff.Classic.Tiff.RawTileSize C# (CSharp) 메소드

RawTileSize() 공개 메소드

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.
리턴 long
        public long RawTileSize(int tile)
        {
            // yes, one method for raw tile and strip sizes
            return RawStripSize(tile);
        }
Tiff