libexif:使用IPTC / XMP将新的exif写入图像

时间:2013-06-10 08:11:48

标签: jpeg exif xmp libexif

我正在尝试使用libexif将EXIF元数据写入JPEG图像。我遇到了没有EXIF但有IPTC / XMP元数据的图像问题。使用IPTC / XMP将EXIF写入图像后,我无法读取EXIF。 “exif”命令行实用程序(也使用libexif)报告EXIF损坏。如果我对没有任何元数据的图像做同样的事情一切正常。

以下是演示问题的小型测试应用程序(假设我们正在使用没有EXIF的图像)。

#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>

#include <libexif/exif-data.h>
#include <libexif/exif-loader.h>
#include <jpeglib.h>

#include "jpegexif/jpeg-data.h"
#include "jpegexif/jpeg-marker.h"
#include "jpegexif/jpeg-data.c"
#include "jpegexif/jpeg-marker.c"



static ExifEntry *create_ascii_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();

    // Create a new ExifEntry using our allocator.
    entry = exif_entry_new_mem(mem);

    // Allocate memory to use for holding the tag data.
    buf = exif_mem_alloc(mem, len);

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

    // 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 create_exif_and_set_software(const char* const filename, const char* const tagvalue) {
    // For simplification we assume here that file has no EXIF, so we create new.
    ExifData* exif = exif_data_new();
    exif_data_set_option(exif, EXIF_DATA_OPTION_FOLLOW_SPECIFICATION);
    exif_data_set_data_type(exif, EXIF_DATA_TYPE_COMPRESSED);
    exif_data_set_byte_order(exif, EXIF_BYTE_ORDER_INTEL);
    exif_data_fix(exif);

    // Create entry for "Software" and set it's data.
    ExifEntry* entry = create_ascii_tag(exif, EXIF_IFD_0, EXIF_TAG_SOFTWARE, strlen(tagvalue) + 1);
    memcpy(entry->data, tagvalue, strlen(tagvalue) + 1);

    // Write exif to JPEG.
    JPEGData* image = jpeg_data_new_from_file(filename);
    jpeg_data_set_exif_data(image, exif);
    jpeg_data_save_file(image, filename);

    // Unreference exif.
    exif_data_unref(exif);
    return 0;
}


int main(int argc, char ** argv) {
    char* filename = argv[1];

    // Create EXIF, set software and write EXIF to file.
    create_exif_and_set_software(filename, "Awesome image editor.");

    // Check that EXIF exists in file.
    ExifData* exif = exif_data_new_from_file(filename);
    printf("EXIF exists: %d\n", exif != NULL);

    return 0;
}

您可以在此下载project and sample images。我使用以下命令在mac上构建它,并通过macports安装了libexif:     gcc exif.c -I / opt / local / include -L / opt / local / lib -lexif

1 个答案:

答案 0 :(得分:0)

简单的方法是从头开始编写JPEG: 首先,写入没有APP1部分的JPEG,而不是添加Exif部分,而不是添加所有其他XMP APP1部分。

请注意,IFD偏移应该适当更新。