CSJ2K.j2k.codestream.HeaderInfo.toStringThNoSOT C# (CSharp) Method

toStringThNoSOT() public method

Returns information found in the tile-part headers of a given tile exception the SOT marker segment.
public toStringThNoSOT ( int t, int ntp ) : System.String
t int index of the tile /// ///
ntp int
return System.String
        public virtual System.String toStringThNoSOT(int t, int ntp)
        {
            int nc = sizValue.csiz;
            System.String str = "";
            // COD
            if (codValue["t" + t] != null)
            {
                str += ("" + ((COD) codValue["t" + t]));
            }
            // COCs
            for (int c = 0; c < nc; c++)
            {
                if (cocValue["t" + t + "_c" + c] != null)
                {
                    str += ("" + ((COC) cocValue["t" + t + "_c" + c]));
                }
            }
            // QCD
            if (qcdValue["t" + t] != null)
            {
                str += ("" + ((QCD) qcdValue["t" + t]));
            }
            // QCCs
            for (int c = 0; c < nc; c++)
            {
                if (qccValue["t" + t + "_c" + c] != null)
                {
                    str += ("" + ((QCC) qccValue["t" + t + "_c" + c]));
                }
            }
            // RGN
            for (int c = 0; c < nc; c++)
            {
                if (rgnValue["t" + t + "_c" + c] != null)
                {
                    str += ("" + ((RGN) rgnValue["t" + t + "_c" + c]));
                }
            }
            // POC
            if (pocValue["t" + t] != null)
            {
                str += ("" + ((POC) pocValue["t" + t]));
            }
            return str;
        }