CSJ2K.j2k.image.input.ImgReader.getTileCompHeight C# (CSharp) 메소드

getTileCompHeight() 공개 메소드

Returns the height in pixels of the specified tile-component. This default implementation assumes no tiling and no component subsampling (i.e., all components, or components, have the same dimensions in pixels).
public getTileCompHeight ( int t, int c ) : int
t int The tile index /// ///
c int The index of the component, from 0 to C-1. /// ///
리턴 int
        public virtual int getTileCompHeight(int t, int c)
        {
            if (t != 0)
            {
                throw new System.InvalidOperationException("Asking a tile-component width for a tile index" + " greater than 0 whereas there is only one tile");
            }
            return h;
        }