Редактирование данных JPEG в формате JPEG с помощью Java

Я хочу редактировать свойства файлов jpg, такие как: комментарии, заголовок, дата съемки, производитель камеры и т. Д.

Я нашел библиотеки для чтения этих данных. Но мне нужна бесплатная библиотека с примерами для их редактирования.

Я знаю о том, что такое Apache (sanselan). Но я не смог редактировать данные с ним. Если вы ранее использовали его самостоятельно, я бы принял это как ответ, только если вы предоставите пример кода, отличный от кода на их веб-сайте. Потому что даже когда я использовал их пример, я не мог редактировать никакие свойства, кроме данных GPS. После того, как я запустил код, свойства файла-свойства все еще имеют те же значения.

Спасибо!

Примечание: я также попробовал JHeader ( https://sourceforge.net/projects/jheader/), но использование его в качестве процесса с параметром -cl все еще не изменило список свойств.

4 ответа

Решение

Apache Commons Imaging работает для меня.

Я расширил образец, представленный здесь

Очевидно, мой клиентский код выглядит так

public static void main(String[] args) throws ImageWriteException, ImageReadException, IOException {
    new WriteExifMetadataExample().changeExifMetadata(new File("somefilename.jpg"), new File("result_file.jpg"));
}

и расширенный метод в WriteExifMetadataExample

public void changeExifMetadata(final File jpegImageFile, final File dst)
        throws IOException, ImageReadException, ImageWriteException {
    OutputStream os = null;
    boolean canThrow = false;
    try {
        TiffOutputSet outputSet = null;

        // note that metadata might be null if no metadata is found.
        final ImageMetadata metadata = Imaging.getMetadata(jpegImageFile);
        final JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata;
        if (null != jpegMetadata) {
            // note that exif might be null if no Exif metadata is found.
            final TiffImageMetadata exif = jpegMetadata.getExif();

            if (null != exif) {
                // TiffImageMetadata class is immutable (read-only).
                // TiffOutputSet class represents the Exif data to write.
                //
                // Usually, we want to update existing Exif metadata by
                // changing
                // the values of a few fields, or adding a field.
                // In these cases, it is easiest to use getOutputSet() to
                // start with a "copy" of the fields read from the image.
                outputSet = exif.getOutputSet();
            }
        }

        // if file does not contain any exif metadata, we create an empty
        // set of exif metadata. Otherwise, we keep all of the other
        // existing tags.
        if (null == outputSet) {
            outputSet = new TiffOutputSet();
        }

        {
            // Example of how to add a field/tag to the output set.
            //
            // Note that you should first remove the field/tag if it already
            // exists in this directory, or you may end up with duplicate
            // tags. See above.
            //
            // Certain fields/tags are expected in certain Exif directories;
            // Others can occur in more than one directory (and often have a
            // different meaning in different directories).
            //
            // TagInfo constants often contain a description of what
            // directories are associated with a given tag.
            //
            final TiffOutputDirectory exifDirectory = outputSet
                    .getOrCreateExifDirectory();
            // make sure to remove old value if present (this method will
            // not fail if the tag does not exist).
            exifDirectory
                    .removeField(ExifTagConstants.EXIF_TAG_APERTURE_VALUE);
            exifDirectory.add(ExifTagConstants.EXIF_TAG_APERTURE_VALUE,
                    new RationalNumber(3, 10));
        }

        {
            // Example of how to add/update GPS info to output set.

            // New York City
            final double longitude = -74.0; // 74 degrees W (in Degrees East)
            final double latitude = 40 + 43 / 60.0; // 40 degrees N (in Degrees
            // North)

            outputSet.setGPSInDegrees(longitude, latitude);
        }



        final TiffOutputDirectory exifDirectory = outputSet
                .getOrCreateRootDirectory();
        exifDirectory
                .removeField(ExifTagConstants.EXIF_TAG_SOFTWARE);
        exifDirectory.add(ExifTagConstants.EXIF_TAG_SOFTWARE,
                "SomeKind");

        os = new FileOutputStream(dst);
        os = new BufferedOutputStream(os);

        new ExifRewriter().updateExifMetadataLossless(jpegImageFile, os,
                outputSet);

        canThrow = true;
    } finally {
        IoUtils.closeQuietly(canThrow, os);
    }
}

Пожалуйста, обратите внимание только на строку, где я добавляю дополнительный тег

final TiffOutputDirectory exifDirectory = outputSet
                .getOrCreateRootDirectory();
        exifDirectory
                .removeField(ExifTagConstants.EXIF_TAG_SOFTWARE);
        exifDirectory.add(ExifTagConstants.EXIF_TAG_SOFTWARE,
                "SomeKind");

в результате тег EXIF ​​был правильно добавлен

введите описание изображения здесь


Чтобы изменить тег комментариев, вы можете сделать следующее

        final TiffOutputDirectory exifDirectory = outputSet.getOrCreateRootDirectory();
        exifDirectory.removeField(MicrosoftTagConstants.EXIF_TAG_XPCOMMENT);
        exifDirectory.add(MicrosoftTagConstants.EXIF_TAG_XPCOMMENT, "SomeKind");

полный список доступных констант находится в пакете:

org.apache.commons.imaging.formats.tiff.constants

введите описание изображения здесь

Пример, как эта работа для вас?

Я бы предположил, что использование пакетов, таких как org.apache.commons.imaging.util.IoUtils и import org.apache.commons.imaging.Imaging, будет вам очень полезно.

Чтобы изменить тег комментариев, вы можете сделать следующее

        final TiffOutputDirectory exifDirectory = outputSet.getOrCreateRootDirectory();
        exifDirectory.removeField(MicrosoftTagConstants.EXIF_TAG_XPCOMMENT);
        exifDirectory.add(MicrosoftTagConstants.EXIF_TAG_XPCOMMENT, "SomeKind");

полный список доступных констант находится в пакете:

org.apache.commons.imaging.formats.tiff.constants

введите описание изображения здесь

Вам необходимо использовать ограничения тегов Microsoft для редактирования тегов.

Другие вопросы по тегам