1 #ifndef _TRANSMOGRIFY_H_
2 #define _TRANSMOGRIFY_H_
3 
4 int JPG_Rotate_CCW(struct ImageStruct *) ;
5 int JPG_Rotate_CW(struct ImageStruct *) ;
6 int JPG_StringPut(char *, int, int, struct ArgStruct *, struct ImageStruct *,
7 		  int, int, char *) ;
8 void JPG_Shade(int, struct ArgStruct *, struct ImageStruct *, int) ;
9 
10 int JPG_Image_onto_Image(struct ImageStruct **new,
11 			 struct ImageStruct *back,
12 			 struct ImageStruct *front,
13 			 int x,
14 			 int y,
15 			 int clip,
16 			 int trans_r,
17 			 int trans_g,
18 			 int trans_b) ;
19 #endif
20