Server IP : 103.119.228.120 / Your IP : 18.116.86.160 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/libtiff-devel-4.0.3/html/man/ |
Upload File : |
<!-- Creator : groff version 1.18.1 --> <!-- CreationDate: Sat Feb 24 18:37:16 2007 --> <html> <head> <meta name="generator" content="groff -Thtml, see www.gnu.org"> <meta name="Content-Style" content="text/css"> <title>QUERY</title> </head> <body> <h1 align=center>QUERY</h1> <a href="#NAME">NAME</a><br> <a href="#SYNOPSIS">SYNOPSIS</a><br> <a href="#DESCRIPTION">DESCRIPTION</a><br> <a href="#DIAGNOSTICS">DIAGNOSTICS</a><br> <a href="#SEE ALSO">SEE ALSO</a><br> <hr> <a name="NAME"></a> <h2>NAME</h2> <!-- INDENTATION --> <table width="100%" border=0 rules="none" frame="void" cols="2" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="8%"></td> <td width="91%"> <p>TIFFCurrentRow, TIFFCurrentStrip, TIFFCurrentTile, TIFFCurrentDirectory, TIFFLastDirectory, TIFFFileno, TIFFFileName, TIFFGetMode, TIFFIsTiled, TIFFIsByteSwapped, TIFFIsUpSampled, TIFFIsMSB2LSB, TIFFGetVersion − query routines</p> </td> </table> <a name="SYNOPSIS"></a> <h2>SYNOPSIS</h2> <!-- INDENTATION --> <table width="100%" border=0 rules="none" frame="void" cols="2" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="8%"></td> <td width="91%"> <p><b>#include <tiffio.h></b></p> <!-- INDENTATION --> <p><b>uint32 TIFFCurrentRow(TIFF*</b> <i>tif</i><b>)<br> tstrip_t TIFFCurrentStrip(TIFF*</b> <i>tif</i><b>)<br> ttile_t TIFFCurrentTile(TIFF*</b> <i>tif</i><b>)<br> tdir_t TIFFCurrentDirectory(TIFF*</b> <i>tif</i><b>)<br> int TIFFLastDirectory(TIFF*</b> <i>tif</i><b>)<br> int TIFFFileno(TIFF*</b> <i>tif</i><b>)<br> char* TIFFFileName(TIFF*</b> <i>tif</i><b>)<br> int TIFFGetMode(TIFF*</b> <i>tif</i><b>)<br> int TIFFIsTiled(TIFF*</b> <i>tif</i><b>)<br> int TIFFIsByteSwapped(TIFF*</b> <i>tif</i><b>)<br> int TIFFIsUpSampled(TIFF*</b> <i>tif</i><b>)<br> int TIFFIsMSB2LSB(TIFF*</b> <i>tif</i><b>)<br> const char* TIFFGetVersion(void)</b></p> </td> </table> <a name="DESCRIPTION"></a> <h2>DESCRIPTION</h2> <!-- INDENTATION --> <table width="100%" border=0 rules="none" frame="void" cols="2" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="8%"></td> <td width="91%"> <p>The following routines return status information about an open <small>TIFF</small> file.</p> <!-- INDENTATION --> <p><i>TIFFCurrentDirectory</i> returns the index of the current directory (directories are numbered starting at 0). This number is suitable for use with the <i>TIFFSetDirectory</i> routine.</p> <!-- INDENTATION --> <p><i>TIFFLastDirectory</i> returns a non-zero value if the current directory is the last directory in the file; otherwise zero is returned.</p> <!-- INDENTATION --> <p><i>TIFFCurrentRow</i>, <i>TIFFCurrentStrip</i>, and <i>TIFFCurrentTile</i>, return the current row, strip, and tile, respectively, that is being read or written. These values are updated each time a read or write is done.</p> <!-- INDENTATION --> <p><i>TIFFFileno</i> returns the underlying file descriptor used to access the <small>TIFF</small> image in the filesystem.</p> <!-- INDENTATION --> <p><i>TIFFFileName</i> returns the pathname argument passed to <i>TIFFOpen</i> or <i>TIFFFdOpen</i>.</p> <!-- INDENTATION --> <p><i>TIFFGetMode</i> returns the mode with which the underlying file was opened. On <small>UNIX</small> systems, this is the value passed to the <i>open</i>(2) system call.</p> <!-- INDENTATION --> <p><i>TIFFIsTiled</i> returns a non-zero value if the image data has a tiled organization. Zero is returned if the image data is organized in strips.</p> <!-- INDENTATION --> <p><i>TIFFIsByteSwapped</i> returns a non-zero value if the image data was in a different byte-order than the host machine. Zero is returned if the TIFF file and local host byte-orders are the same. Note that TIFFReadTile(), TIFFReadStrip() and TIFFReadScanline() functions already normally perform byte swapping to local host order if needed.</p> <!-- INDENTATION --> <p><i>TIFFIsUpSampled</i> returns a non-zero value if image data returned through the read interface routines is being up-sampled. This 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).</p> <!-- INDENTATION --> <p><i>TIFFIsMSB2LSB</i> returns a non-zero value if the image data is being returned with bit 0 as the most significant bit.</p> <!-- INDENTATION --> <p><i>TIFFGetVersion</i> returns an <small>ASCII</small> string that has a version stamp for the <small>TIFF</small> library software.</p> </td> </table> <a name="DIAGNOSTICS"></a> <h2>DIAGNOSTICS</h2> <!-- INDENTATION --> <table width="100%" border=0 rules="none" frame="void" cols="2" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="8%"></td> <td width="91%"> <p>None.</p> </td> </table> <a name="SEE ALSO"></a> <h2>SEE ALSO</h2> <!-- INDENTATION --> <table width="100%" border=0 rules="none" frame="void" cols="2" cellspacing="0" cellpadding="0"> <tr valign="top" align="left"> <td width="8%"></td> <td width="91%"> <p><i>libtiff</i>(3TIFF), <i>TIFFOpen</i>(3TIFF), <i>TIFFFdOpen</i>(3TIFF)</p> </td> </table> <hr> </body> </html>