Questions tagged [libexif]

libexif is an EXIF Tag Parsing Library written in C.

24 questions
1
vote
1 answer

libexif: writing new exif into image with IPTC/XMP

I am trying to write EXIF metadata to JPEG images using libexif. I've faced with problem with images without EXIF but with IPTC/XMP metadata. After writing EXIF to images with IPTC/XMP I can't read EXIF. The "exif" command line utility (which also…
Vlad
  • 1,631
  • 1
  • 16
  • 21
1
vote
1 answer

Libexif undefined reference error

I have a program that uses the libexif C library found here http://libexif.sourceforge.net/ I installed the library and it is found at /usr/include/libexif I include these at the top of the program #include #include…
Irlanco
  • 769
  • 1
  • 8
  • 22
1
vote
2 answers

Compiling libexif as static lib with Visual Studio 2010 - then linking from Visual C++ project

Is it possible to compile libexif with Visual Studio 2010? I have been trying to do so and have been running into a whole slew of problems. I cannot find any information about whether anybody has successfully done this before. I know I can use MinGW…
KSletmoe
  • 977
  • 9
  • 23
0
votes
0 answers

How to integrate libraries from cygwin into eclpise for c/c++

I am trying to integrate the libexif library into a project of mine. I used the cygwin application to install the libexif-doc library. I'm looking for the static library and header files but can't find them within the cygwin installation folder.…
0
votes
1 answer

Cannot include libexif in C on Kali linux

I'm trying to include libexif to my project in C, I add whole libexif folder to my project folder, then used ./configure and then make command as README told me to do so. Still I'm getting warnings while I try to compile my programm. Warining: In…
czakub
  • 5
  • 5
0
votes
0 answers

How to remove the embedded ICC profile from an image in C++?

I need to load a JPEG image with its exif data in a C++ program, apply an operation to generate a new grayscale image (1 channel) and save this result to a JPEG with the original exif information except for the embedded ICC Profile which should be…
0
votes
1 answer

keep/copy XMP with libexif

I try to add a thumbnail to a JPEG picture using libexif. For now I'm borrowing the code from exif (the command line tool that is shipped by the libexif team). However I noticed the XMP tags get deleted from the metadata. There is an old bugreport…
usilo
  • 305
  • 2
  • 10
0
votes
0 answers

How to save char* tag values in libexif

I'm having an issue with libexif saving tags string data. I'm allocating memory for string value, using strcpy and then just assiggn pointer to specific tags entry->data. Problem is - saving with exif_data_save_data and fwrite, i get my string value…
0
votes
1 answer

libexif make optional

I use libexif in my C/gtk+ application. But i want to make it optional. What must i to write in my configure file for to do this? Thank you
0xAX
  • 20,957
  • 26
  • 117
  • 206
1
2