BitMiracle.LibTiff.Classic.Tiff.IsUpSampled C# (CSharp) Method

IsUpSampled() public method

Gets the value indicating whether the image data returned through the read interface methods is being up-sampled.
The value returned by this method can be useful to applications that want to calculate I/O buffer sizes to reflect this usage (though the usual strip and tile size routines already do this).
public IsUpSampled ( ) : bool
return bool
        public bool IsUpSampled()
        {
            return ((m_flags & TiffFlags.UPSAMPLED) == TiffFlags.UPSAMPLED);
        }
Tiff