CSJ2K.j2k.codestream.HeaderInfo.SIZ.getCompImgHeight C# (CSharp) Метод

getCompImgHeight() публичный Метод

public getCompImgHeight ( int c ) : int
c int
Результат int
            public virtual int getCompImgHeight(int c)
            {
                if (compHeight == null)
                {
                    compHeight = new int[csiz];
                    for (int cc = 0; cc < csiz; cc++)
                    {
                        //UPGRADE_WARNING: Data types in Visual C# might be different.  Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
                        compHeight[cc] = (int) (System.Math.Ceiling((ysiz) / (double) yrsiz[cc]) - System.Math.Ceiling(y0siz / (double) yrsiz[cc]));
                    }
                }
                return compHeight[c];
            }