本文整理汇总了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;
}