home *** CD-ROM | disk | FTP | other *** search
- /*................................. TIFF.H ................ 5-30-92 ........*/
- /* This file declares the TIFFLB library functions and global parameters */
- /* used throughout the graphics routines. */
- /* */
- /* Copyright Spyro Gumas, 1992. All Rights Reserved. */
- /*..........................................................................*/
-
-
- /*..........................................................................*/
- /* Function Prototypes */
- /*..........................................................................*/
- int _far _cdecl tf_open_file(char _far *);
- void _far _cdecl tf_close_file(void);
- int _far _cdecl tf_get_file_info(void);
- int _far _cdecl tf_skip_ifd(unsigned);
- void _far _cdecl tf_set_defaults(void);
- int _far _cdecl tf_read_ifd(void);
- void _far _cdecl tf_display_image(unsigned,unsigned);
- void _far _cdecl tf_set_prime_colors(void);
-
- /*..........................................................................*/
- /* Parameter Declarations */
- /*..........................................................................*/
-
- unsigned long TF_ImageWidth, TF_ImageLength;
- unsigned TF_BitsPerSample[3],TF_Num_Ifd;
- unsigned TF_ResolutionUnit,TF_SamplesPerPixel;
- unsigned TF_PhotometricInterpretation;
- unsigned long TF_XResolution_int,TF_XResolution_frac;
- unsigned long TF_YResolution_int,TF_YResolution_frac;
- unsigned TF_Black,TF_Red,TF_Orange,TF_Yellow,TF_Green;
- unsigned TF_Aqua,TF_Blue,TF_Violet,TF_White;
-