如何编辑C中的EXIF标签?

问题描述:

我有一个使用BlackBerry 10 Dev Alpha拍摄的JPG文件。这个代码(的this example略加修改)输出结果正确如何编辑C中的EXIF标签?

static char* read_tag(ExifData *ed, ExifIfd eid, ExifTag tag){ 
static char result[1024]; 
ExifEntry *entry = exif_content_get_entry(ed->ifd[eid], tag); 

if (entry){ 
    char buf[1024]; 

    exif_entry_get_value(entry, buf, sizeof(buf)); 
    trim_spaces(buf); 

    if (*buf) strcpy(result, buf); 
    else strcpy(result, "NULL"); 
} 
else strcpy(result, "NULL"); 

return result; 
} 

这意味着的输出:

printf("Model : %s\n", read_tag(ed, EXIF_IFD_0, EXIF_TAG_MODEL)); 

是:

型号:黑莓10开发阿尔法

现在我不知道如何将“BlackBerry 10 Dev Al pha“(EXIF_TAG_MODEL)与另一个值,例如”Nokia 3330“。我已经看过another example。不幸的是我发现它很难阅读。也许有人有一个简短/直接的代码?

+0

10你觉得很难阅读的链接示例的哪一部分?如果你给一些行号,我会看看我能做些什么。 –

+0

我想,从第263行开始。但当然这是关于写一个新的标签。我想要的是编辑现有的标签。 – anta40

libexif不支持直接加载JPG文件。您需要另外一个包来阅读JPG文件并提取EXIF文件头(或者您可以自己写一些东西)。

注意,在这个例子中它只需创建一个新的EXIF头,然后将其保存使用fwrite来的文件,然后附加在这里这部分代码的不就完了EXIF信息的原始JPG数据:

/* Write JPEG image data, skipping the non-EXIF header */ 
      if (fwrite(image_jpg+image_data_offset, image_data_len, 1, f) != 1) { 
        fprintf(stderr, "Error writing to file %s\n", FILE_NAME); 
        goto errout; 
      } 

有一个很好的Github项目叫做exifyay,它使用了libexif,并有两个额外的库来处理JPGS中的读取。这是一个python项目,但库的来源是C.你可以找到exifyay here(注意我没有以任何方式与exifyay或libexif)

我刚刚编译libexif和合并来源exifyay到VS2010项目here。文件夹'contrib \ examples \ LibexifExample'中有一个示例。如果你不喜欢下载随机链接,这里是我工作的代码示例:

/* 
* write-exif.c 
* 
* Placed into the public domain by Daniel Fandrich 
* 
* Create a new EXIF data block and write it into a JPEG image file. 
* 
* The JPEG image data used in this example is fixed and is guaranteed not 
* to contain an EXIF tag block already, so it is easy to precompute where 
* in the file the EXIF data should be. In real life, a library like 
* libjpeg (included with the exif command-line tool source code) would 
* be used to write to an existing JPEG file. 
*/ 

#include <stdio.h> 
#include <stdlib.h> 
#include <string.h> 
#include <assert.h> 
#include <libexif/exif-data.h> 
#include <libjpeg/jpeg-data.h> 
#include <JpegEncoderEXIF/JpegEncoderEXIF.h> 


/* byte order to use in the EXIF block */ 
#define FILE_BYTE_ORDER EXIF_BYTE_ORDER_INTEL 

/* comment to write into the EXIF block */ 
#define FILE_COMMENT "libexif demonstration image" 

/* special header required for EXIF_TAG_USER_COMMENT */ 
#define ASCII_COMMENT "ASCII\0\0\0" 

static ExifEntry *create_tag(ExifData *exif, ExifIfd ifd, ExifTag tag, size_t len) 
{ 
    void *buf; 
    ExifEntry *entry; 

    /* Create a memory allocator to manage this ExifEntry */ 
    ExifMem *mem = exif_mem_new_default(); 
    assert(mem != NULL); /* catch an out of memory condition */ 

    /* Create a new ExifEntry using our allocator */ 
    entry = exif_entry_new_mem (mem); 
    assert(entry != NULL); 

    /* Allocate memory to use for holding the tag data */ 
    buf = exif_mem_alloc(mem, len); 
    assert(buf != NULL); 

    /* Fill in the entry */ 
    entry->data = (unsigned char*)buf; 
    entry->size = len; 
    entry->tag = tag; 
    entry->components = len; 
    entry->format = EXIF_FORMAT_UNDEFINED; 

    /* Attach the ExifEntry to an IFD */ 
    exif_content_add_entry (exif->ifd[ifd], entry); 

    /* The ExifMem and ExifEntry are now owned elsewhere */ 
    exif_mem_unref(mem); 
    exif_entry_unref(entry); 

    return entry; 
} 

int main(int argc, char **argv) 
{ 

    ExifEntry *entry; 

    //Input JPG 
    char mInputFilename[]="example.jpg"; 

    //Load JPG 
    JPEGData * mJpegData = jpeg_data_new_from_file(mInputFilename); 

    //Load Exif data from JPG 
    ExifData * mExifData = jpeg_data_get_exif_data(mJpegData); 

    //Set some Exif options 
    exif_data_set_option(mExifData, EXIF_DATA_OPTION_FOLLOW_SPECIFICATION); 
    exif_data_set_data_type(mExifData, EXIF_DATA_TYPE_COMPRESSED); 
    exif_data_set_byte_order(mExifData, FILE_BYTE_ORDER); 

    entry = create_tag(mExifData, EXIF_IFD_EXIF, EXIF_TAG_USER_COMMENT, 
      sizeof(ASCII_COMMENT) + sizeof(FILE_COMMENT) - 2); 
    /* Write the special header needed for a comment tag */ 
    memcpy(entry->data, ASCII_COMMENT, sizeof(ASCII_COMMENT)-1); 
    /* Write the actual comment text, without the trailing NUL character */ 
    memcpy(entry->data+8, FILE_COMMENT, sizeof(FILE_COMMENT)-1); 
    /* create_tag() happens to set the format and components correctly for 
    * EXIF_TAG_USER_COMMENT, so there is nothing more to do. */ 

    /* Create a EXIF_TAG_SUBJECT_AREA tag */ 
    entry = create_tag(mExifData, EXIF_IFD_EXIF, EXIF_TAG_SUBJECT_AREA, 
       4 * exif_format_get_size(EXIF_FORMAT_SHORT)); 
    entry->format = EXIF_FORMAT_SHORT; 
    entry->components = 4; 

    //Write back exif data 
    jpeg_data_set_exif_data(mJpegData,mExifData); 

    //Save to JPG 
    jpeg_data_save_file(mJpegData,"test.jpg"); 

    return 0; 
} 
+0

“libexif不支持直接将JPG加载到” - exif_data_new_from_file()'函数中。 –