CSJ2K.j2k.image.Tiler.getTilingOrigin C# (CSharp) Метод

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

Returns the tiling origin, referred to as '(xt0siz,yt0siz)' in the codestream header (SIZ marker segment).
public getTilingOrigin ( Coord co ) : Coord
co Coord If not null this object is used to return the information. If /// null a new one is created and returned. /// ///
Результат Coord
        public Coord getTilingOrigin(Coord co)
        {
            if (co != null)
            {
                co.x = xt0siz;
                co.y = yt0siz;
                return co;
            }
            else
            {
                return new Coord(xt0siz, yt0siz);
            }
        }