4

Apache Commons Imaging を使用して EXIF データを TIFF 画像に書き込むにはどうすればよいですか?

これは私が試したものです:

File img = new File("pic.tif");
File dst = new File("out.tif");
try (FileOutputStream fos = new FileOutputStream(dst);
     OutputStream os = new BufferedOutputStream(fos)) {

    TiffOutputSet outputSet = null;

    final ImageMetadata metadata = Imaging.getMetadata(img);
    final TiffImageMetadata tiffMetadata = (TiffImageMetadata) metadata;
    outputSet = tiffMetadata.getOutputSet();

    if (null == outputSet) {
        outputSet = new TiffOutputSet();
    }

    // New York City
    final double longitude = -74.0;
    final double latitude = 40 + 43 / 60.0;
    outputSet.setGPSInDegrees(longitude, latitude);

    new ExifRewriter().updateExifMetadataLossless(img, os, outputSet);
}

しかし、私はこのエラーが発生しました:

Exception in thread "main" org.apache.commons.imaging.ImageReadException: Not a Valid JPEG File: doesn't begin with 0xffd8
    at org.apache.commons.imaging.common.BinaryFunctions.readAndVerifyBytes(BinaryFunctions.java:134)
    at org.apache.commons.imaging.formats.jpeg.JpegUtils.traverseJFIF(JpegUtils.java:56)
    at org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter.analyzeJFIF(ExifRewriter.java:186)
    at org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter.updateExifMetadataLossless(ExifRewriter.java:376)
    at org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter.updateExifMetadataLossless(ExifRewriter.java:298)
    at Test.main(Test.java:94)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

ExifRewriterクラスがTIFFをサポートしていないことを示しているようです? しかし、どのクラスを使用する必要がありますか?

4

2 に答える 2

3

ExifRewriter はorg.apache.commons.imaging.formats.jpegパッケージのツールであるため、TIFF 形式では機能しません。

EXIF とタグを TIFF ファイルに書き込むには、それを読み取ってから、OutputSet 用に作成されたタグで書き直す必要があります。

BufferedImage img = Imaging.getBufferedImage(f);
byte[] imageBytes = Imaging.writeImageToBytes(img, ImageFormats.TIFF, new HashMap<>());

File ex = new File(FileUtils.getBaseFileName(f) + "_exif." + FileUtils.getExtension(f));
try(FileOutputStream fos = new FileOutputStream(ex);
    OutputStream os = new BufferedOutputStream(fos)) {
    new TiffImageWriterLossless(imageBytes).write(os, outputSet);
}

次に、元のファイルを exif 化されたファイルで上書きすることができます。

Files.delete(Paths.get(f.toURI()));
Files.move(Paths.get(ex.toURI()), Paths.get(f.toURI()));
于 2016-11-09T10:34:59.247 に答える