/* RCSid $Id: resolu.h,v 2.11 2009/05/21 18:08:43 greg Exp $ */ /* * Definitions for resolution line in image file. * * Include after * * True image orientation is defined by an xy coordinate system * whose origin is at the lower left corner of the image, with * x increasing to the right and y increasing in the upward direction. * This true orientation is independent of how the pixels are actually * ordered in the file, which is indicated by the resolution line. * This line is of the form "{+-}{XY} xyres {+-}{YX} yxres\n". * A typical line for a 1024x600 image might be "-Y 600 +X 1024\n", * indicating that the scanlines are in English text order (PIXSTANDARD). */ #ifndef _RAD_RESOLU_H_ #define _RAD_RESOLU_H_ #include #ifdef __cplusplus extern "C" { #endif /* flags for scanline ordering */ #define XDECR 1 #define YDECR 2 #define YMAJOR 4 /* standard scanline ordering */ #define PIXSTANDARD (YMAJOR|YDECR) #define PIXSTDFMT "-Y %d +X %d\n" /* structure for image dimensions */ typedef struct { int rt; /* orientation (from flags above) */ int xr, yr; /* x and y resolution */ } RESOLU; /* macros to get scanline length and number */ #define scanlen(rs) ((rs)->rt & YMAJOR ? (rs)->xr : (rs)->yr) #define numscans(rs) ((rs)->rt & YMAJOR ? (rs)->yr : (rs)->xr) /* resolution string buffer and its size */ #define RESOLU_BUFLEN 32 extern char resolu_buf[RESOLU_BUFLEN]; /* macros for reading/writing resolution struct */ #define fputsresolu(rs,fp) fputs(resolu2str(resolu_buf,rs),fp) #define fgetsresolu(rs,fp) str2resolu(rs, \ fgets(resolu_buf,RESOLU_BUFLEN,fp)) /* reading/writing of standard ordering */ #define fprtresolu(sl,ns,fp) fprintf(fp,PIXSTDFMT,ns,sl) #define fscnresolu(sl,ns,fp) (fscanf(fp,PIXSTDFMT,ns,sl)==2) /* identify header lines */ #define isheadid(s) headidval(NULL,s) #define isformat(s) formatval(NULL,s) #define isdate(s) dateval(NULL,s) #define isgmt(s) gmtval(NULL,s) #define LATLONSTR "LATLONG=" #define LLATLONSTR 8 #define islatlon(hl) (!strncmp(hl,LATLONSTR,LLATLONSTR)) #define latlonval(ll,hl) sscanf((hl)+LLATLONSTR, "%f %f", \ &(ll)[0],&(ll)[1]) #define fputlatlon(lat,lon,fp) fprintf(fp,"%s %.6f %.6f\n",LATLONSTR,lat,lon) /* defined in resolu.c */ extern void fputresolu(int ord, int sl, int ns, FILE *fp); extern int fgetresolu(int *sl, int *ns, FILE *fp); extern char * resolu2str(char *buf, RESOLU *rp); extern int str2resolu(RESOLU *rp, char *buf); /* defined in header.c */ extern void newheader(char *t, FILE *fp); extern int headidval(char *r, char *s); extern int dateval(time_t *t, char *s); extern int gmtval(time_t *t, char *s); extern void fputdate(time_t t, FILE *fp); extern void fputnow(FILE *fp); extern void printargs(int ac, char **av, FILE *fp); extern int formatval(char *r, char *s); extern void fputformat(char *s, FILE *fp); typedef int gethfunc(char *s, void *p); /* callback to process header lines */ extern int getheader(FILE *fp, gethfunc *f, void *p); extern int globmatch(char *pat, char *str); extern int checkheader(FILE *fin, char *fmt, FILE *fout); #ifdef __cplusplus } #endif #endif /* _RAD_RESOLU_H_ */