当前位置: 首页>>代码示例>>C#>>正文


C# TIFF.tif_decodestrip方法代码示例

本文整理汇总了C#中Free.Ports.LibTiff.TIFF.tif_decodestrip方法的典型用法代码示例。如果您正苦于以下问题:C# TIFF.tif_decodestrip方法的具体用法?C# TIFF.tif_decodestrip怎么用?C# TIFF.tif_decodestrip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Free.Ports.LibTiff.TIFF的用法示例。


在下文中一共展示了TIFF.tif_decodestrip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TIFFReadEncodedStrip

        // Read a strip of data and decompress the specified
        // amount into the user-supplied buffer.
        public static int TIFFReadEncodedStrip(TIFF tif, int strip, byte[] buf, int size)
        {
            if(!TIFFCheckRead(tif, false)) return -1;

            TIFFDirectory td=tif.tif_dir;

            if(strip>=td.td_nstrips)
            {
                TIFFErrorExt(tif.tif_clientdata, tif.tif_name, "{0}: Strip out of range, max {1}", strip, td.td_nstrips);
                return -1;
            }

            // Calculate the strip size according to the number of
            // rows in the strip (check for truncated last strip on any
            // of the separations).
            uint strips_per_sep;
            if(td.td_rowsperstrip>=td.td_imagelength) strips_per_sep=1;
            else strips_per_sep=(td.td_imagelength+td.td_rowsperstrip-1)/td.td_rowsperstrip;

            uint sep_strip=(uint)strip%strips_per_sep;

            uint nrows=td.td_imagelength%td.td_rowsperstrip;

            if(sep_strip!=strips_per_sep-1||nrows==0) nrows=td.td_rowsperstrip;

            int stripsize=TIFFVStripSize(tif, nrows);
            if(size==-1) size=stripsize;
            else if(size>stripsize) size=stripsize;

            if(TIFFFillStrip(tif, (uint)strip)&&tif.tif_decodestrip(tif, buf, size, (ushort)(strip/td.td_stripsperimage)))
            {
                tif.tif_postdecode(tif, buf, 0, size);
                return (size);
            }

            return -1;
        }
开发者ID:JoshDullen,项目名称:libtiffN,代码行数:39,代码来源:tif_read.cs


注:本文中的Free.Ports.LibTiff.TIFF.tif_decodestrip方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。