From: Lutz <lu...@us...> - 2005-07-13 20:29:57
|
On Wed, 2005-07-13 at 15:06 +0200, Fabien Poupineau wrote: > I read this file, but I still don't understand how do you assign the > values to the tags: if I want to set the GPSLongitudeRef to east, what > do I have to do ?=20 There is no interface for that. You need to access the ExifEntry->data directly, i.e. e =3D exif_entry_new (); exif_content_add_entry (c, e); e->tag =3D EXIF_TAG_GPS_...; e->format =3D EXIF_FORMAT_SHORT; e->components =3D 1; e->size =3D ...; e->data =3D malloc (...): exif_set_short (e->data, byte_order, ...); Or similar (I don't know what format the individual tags have -> EXIF specification). Regards --=20 Lutz M=FCller <lu...@us...> |