6

exifタグを編集し、それらにアプリケーション固有の値を追加するタスクがあります。exifタグが存在する場合、libexifはそれらを編集するのに満足しています。ただし、exifタグが存在しない場合は、それらを作成してファイルに追加する必要があります。libexifはCfopenを使用しているため、IO操作なしで簡単な方法はないと思います。生の画像データを読み取ってメモリに入れ、fopen(newfile、'w')でexifデータを追加してから、画像データを追加することを考えています。
誰かがより簡単な方法を知っている場合にのみ(私はlibexifで制限されており、libexiv2はライセンスの競合を引き起こす可能性があります)。

4

2 に答える 2

6

共通の利益のために、私は自分の質問に答えようとしています。exifアプリケーションには、jpeg生データの操作を可能にする変更されたlibjpegがあります。それはのような機能を持っています

jpeg_data_load_data (JPEGData *data, const unsigned char *d,unsigned int size);

jpeg_data_set_exif_data(myJPEGImage,exif); jpeg_data_save_file(myJPEGImage,"gangrene1.jpg");

それを使用することができます。また、imagemagickのような無料で利用可能なプログラムには、exifおよびjpegデータを操作するための独自のlibjpeg、libexif実装があります。これがお役に立てば幸いです

于 2012-09-05T15:53:43.517 に答える
0

libexifとlibexiv2のどちらかを選択して、あなたと同じ道を進んだところです。ライセンスのためにlibexifを使用しました。

手元の質問に戻り、

libexifは、JPGの直接読み込みをサポートしていません。JPGを読み込んでEXIFヘッダーを抽出するには、別のパッケージが必要です(または、自分で何かを書くこともできます)。

libexifを使用し、JPGSでの読み取りを処理する2つの追加ライブラリを持つexifyayと呼ばれる優れたGithubプロジェクトがあります。これはPythonプロジェクトですが、ライブラリのソースはCです。ここでexifyayを見つけることができます(exifyayやlibexifには一切関与していないことに注意してください)。

私は最近libexifをコンパイルし、exifyayからのソースをここでVS2010プロジェクトにマージしました。フォルダ'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;
}
于 2015-06-10T01:22:51.650 に答える