libgphoto2 photo camera library (libgphoto2) Internals  2.5.23
exif.c
Go to the documentation of this file.
1 
25 /* Contained some EXIF functions previously. We now defer to libexif usage. */
26 
27 #include "exif.h"
28 
29 #include <stdio.h>
30 
31 /*
32  * Gets the thumbnail of an EXIF image.
33  * The thumbnail size is provided
34  *
35  * No longer provided, use libexif directly please.
36  */
37 unsigned char *gpi_exif_get_thumbnail_and_size(void *exifdat, long *size) { return NULL; }
38 
39 /* No longer provided */
40 int gpi_exif_stat(void *exifdata) { return -1; }
exif.h
gpi_exif_stat
int gpi_exif_stat(void *exifdata)
Definition: exif.c:40
gpi_exif_get_thumbnail_and_size
unsigned char * gpi_exif_get_thumbnail_and_size(void *exifdat, long *size)
Definition: exif.c:37