CSJ2K.j2k.image.input.ImgReader.getCompImgWidth C# (CSharp) Метод

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

Returns the width in pixels of the specified component in the overall image. This default implementation assumes no component, or component, subsampling (i.e. all components have the same dimensions in pixels).
public getCompImgWidth ( int c ) : int
c int The index of the component, from 0 to C-1. /// ///
Результат int
        public virtual int getCompImgWidth(int c)
        {
            return w;
        }