00001 /* jpegSize - read a jpeg header and figure out dimensions of image. 00002 * Adapted by Galt Barber from Matthias Wandel's jhead program */ 00003 00004 #ifndef JPEGSIZE_H 00005 00006 void jpegSize(char *fileName, int *width, int *height); 00007 /* Read image width and height. 00008 * Parse marker stream until SOS or EOI; */ 00009 00010 #endif /* JPEGSIZE_H */ 00011
1.5.2