本文整理汇总了C#中Free.Ports.LibTiff.TIFF.tif_predecode方法的典型用法代码示例。如果您正苦于以下问题:C# TIFF.tif_predecode方法的具体用法?C# TIFF.tif_predecode怎么用?C# TIFF.tif_predecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Free.Ports.LibTiff.TIFF
的用法示例。
在下文中一共展示了TIFF.tif_predecode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TIFFStartTile
// Set state to appear as if a
// tile has just been read in.
static bool TIFFStartTile(TIFF tif, uint tile)
{
TIFFDirectory td=tif.tif_dir;
if((tif.tif_flags&TIF_FLAGS.TIFF_CODERSETUP)==0)
{
if(!tif.tif_setupdecode(tif)) return false;
tif.tif_flags|=TIF_FLAGS.TIFF_CODERSETUP;
}
tif.tif_curtile=tile;
tif.tif_row=(tile%TIFFhowmany(td.td_imagewidth, td.td_tilewidth))*td.td_tilelength;
tif.tif_col=(tile%TIFFhowmany(td.td_imagelength, td.td_tilelength))*td.td_tilewidth;
if((tif.tif_flags&TIF_FLAGS.TIFF_NOREADRAW)==TIF_FLAGS.TIFF_NOREADRAW)
{
tif.tif_rawdata=null; // ?????
tif.tif_rawcp=0;
tif.tif_rawcc=0;
}
else
{
tif.tif_rawcp=0; //was tif.tif_rawdata;
tif.tif_rawcc=td.td_stripbytecount[tile];
}
return tif.tif_predecode(tif, (ushort)(tile/td.td_stripsperimage));
}
示例2: TIFFStartStrip
// Set state to appear as if a
// strip has just been read in.
static bool TIFFStartStrip(TIFF tif, uint strip)
{
TIFFDirectory td=tif.tif_dir;
if((tif.tif_flags&TIF_FLAGS.TIFF_CODERSETUP)==0)
{
if(!tif.tif_setupdecode(tif)) return false;
tif.tif_flags|=TIF_FLAGS.TIFF_CODERSETUP;
}
tif.tif_curstrip=strip;
tif.tif_row=(strip%td.td_stripsperimage)*td.td_rowsperstrip;
if((tif.tif_flags&TIF_FLAGS.TIFF_NOREADRAW)==TIF_FLAGS.TIFF_NOREADRAW)
{
tif.tif_rawdata=null; // ?????
tif.tif_rawcp=0;
tif.tif_rawcc=0;
}
else
{
tif.tif_rawcp=0; //was tif.tif_rawdata;
tif.tif_rawcc=td.td_stripbytecount[strip];
}
return tif.tif_predecode(tif, (ushort)(strip/td.td_stripsperimage));
}