java - 使用 Java 编辑 jpeg EXIF 数据

标签 java image jpeg exif

我想编辑 jpg 文件的属性,例如:评论、标题、拍摄日期、相机制造商等。

enter image description here

我找到了可以读取这些数据的图书馆。但是我需要一个带有示例的免费库来编辑它们。

我知道 apache 的成像 (sanselan)。但我无法用它编辑数据。如果您以前自己使用过它,只有在您提供示例代码而不是他们网站上的代码时,我才会接受它作为答案。因为即使我使用他们的示例,我也无法编辑 GPS 数据以外的任何属性。在我运行代码后,file-properties-details 仍然具有相同的值。

谢谢!

注意:我也尝试了 JHeader ( https://sourceforge.net/projects/jheader/ ),但将它用作带有 -cl 选项的进程仍然没有更改属性列表。

最佳答案

Apache commons Imaging 对我有用。

我已经扩展了提供的示例 here

显然我的客户端代码看起来像这样

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 标签被正确添加

enter image description here


要更改评论标签,您可以执行以下操作

        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

enter image description here

关于java - 使用 Java 编辑 jpeg EXIF 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36868013/

相关文章:

java - 绘制动态图

java - TestNG,来自 xml 文件的 0 个或多个参数

java - Java中有goto语句吗?

image - 在浏览器中缓存图像

image - 如何从位图创建透明 png 图像?

css - 大图像的图像加载器动画

c++ - 是否存在 stb_image simd 支持?

java - Docker 停止容器自动重新启动

python ghostscript 不关闭输出文件

python - 来自OpenCV读取的JPEG图像内存字节大小似乎不正确