All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.imaging.formats.jpeg.iptc.JpegIptcRewriter Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha4
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.imaging.formats.jpeg.iptc;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.commons.imaging.ImageReadException;
import org.apache.commons.imaging.ImageWriteException;
import org.apache.commons.imaging.common.bytesource.ByteSource;
import org.apache.commons.imaging.common.bytesource.ByteSourceArray;
import org.apache.commons.imaging.common.bytesource.ByteSourceFile;
import org.apache.commons.imaging.common.bytesource.ByteSourceInputStream;
import org.apache.commons.imaging.formats.jpeg.JpegConstants;
import org.apache.commons.imaging.formats.jpeg.xmp.JpegRewriter;

/**
 * Interface for Exif write/update/remove functionality for Jpeg/JFIF images.
 */
public class JpegIptcRewriter extends JpegRewriter {

    /**
     * Reads a Jpeg image, removes all IPTC data from the App13 segment but
     * leaves the other data in that segment (if present) unchanged and writes
     * the result to a stream.
     * 

* * @param src * Image file. * @param os * OutputStream to write the image to. * * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image * @see java.io.File * @see java.io.OutputStream */ public void removeIPTC(final File src, final OutputStream os) throws ImageReadException, IOException, ImageWriteException { removeIPTC(src, os, false); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged (unless * removeSegment is true) and writes the result to a stream. *

* * @param src * Image file. * @param os * OutputStream to write the image to. * @param removeSegment * Remove the App13 segment. * * @see java.io.File * @see java.io.OutputStream * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final File src, final OutputStream os, final boolean removeSegment) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceFile(src); removeIPTC(byteSource, os, removeSegment); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. *

* * @param src * Byte array containing Jpeg image data. * @param os * OutputStream to write the image to. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final byte[] src, final OutputStream os) throws ImageReadException, IOException, ImageWriteException { removeIPTC(src, os, false); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged (unless * removeSegment is true) and writes the result to a stream. *

* * @param src * Byte array containing Jpeg image data. * @param os * OutputStream to write the image to. * @param removeSegment * Remove the App13 segment. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final byte[] src, final OutputStream os, final boolean removeSegment) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceArray(src); removeIPTC(byteSource, os, removeSegment); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. *

* * @param src * InputStream containing Jpeg image data. * @param os * OutputStream to write the image to. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final InputStream src, final OutputStream os) throws ImageReadException, IOException, ImageWriteException { removeIPTC(src, os, false); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged (unless * removeSegment is true) and writes the result to a stream. *

* * @param src * InputStream containing Jpeg image data. * @param os * OutputStream to write the image to. * @param removeSegment * Remove the App13 segment. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final InputStream src, final OutputStream os, final boolean removeSegment) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceInputStream(src, null); removeIPTC(byteSource, os, removeSegment); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. *

* * @param byteSource * ByteSource containing Jpeg image data. * @param os * OutputStream to write the image to. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final ByteSource byteSource, final OutputStream os) throws ImageReadException, IOException, ImageWriteException { removeIPTC(byteSource, os, false); } /** * Reads a Jpeg image, removes all IPTC data from the App13 segment but * leaves the other data in that segment (if present) unchanged (unless * removeSegment is true) and writes the result to a stream. *

* * @param byteSource * ByteSource containing Jpeg image data. * @param os * OutputStream to write the image to. * @param removeSegment * Remove the App13 segment. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void removeIPTC(final ByteSource byteSource, final OutputStream os, final boolean removeSegment) throws ImageReadException, IOException, ImageWriteException { final JFIFPieces jfifPieces = analyzeJFIF(byteSource); final List oldPieces = jfifPieces.pieces; final List photoshopApp13Segments = findPhotoshopApp13Segments(oldPieces); if (photoshopApp13Segments.size() > 1) { throw new ImageReadException( "Image contains more than one Photoshop App13 segment."); } final List newPieces = removePhotoshopApp13Segments(oldPieces); if (!removeSegment && photoshopApp13Segments.size() == 1) { final JFIFPieceSegment oldSegment = (JFIFPieceSegment) photoshopApp13Segments.get(0); final Map params = new HashMap<>(); final PhotoshopApp13Data oldData = new IptcParser().parsePhotoshopSegment(oldSegment.getSegmentData(), params); final List newBlocks = oldData.getNonIptcBlocks(); final List newRecords = new ArrayList<>(); final PhotoshopApp13Data newData = new PhotoshopApp13Data(newRecords, newBlocks); final byte[] segmentBytes = new IptcParser().writePhotoshopApp13Segment(newData); final JFIFPieceSegment newSegment = new JFIFPieceSegment( oldSegment.marker, segmentBytes); newPieces.add(oldPieces.indexOf(oldSegment), newSegment); } writeSegments(os, newPieces); } /** * Reads a Jpeg image, replaces the IPTC data in the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. * * @param src * Byte array containing Jpeg image data. * @param os * OutputStream to write the image to. * @param newData * structure containing IPTC data. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void writeIPTC(final byte[] src, final OutputStream os, final PhotoshopApp13Data newData) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceArray(src); writeIPTC(byteSource, os, newData); } /** * Reads a Jpeg image, replaces the IPTC data in the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. * * @param src * InputStream containing Jpeg image data. * @param os * OutputStream to write the image to. * @param newData * structure containing IPTC data. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void writeIPTC(final InputStream src, final OutputStream os, final PhotoshopApp13Data newData) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceInputStream(src, null); writeIPTC(byteSource, os, newData); } /** * Reads a Jpeg image, replaces the IPTC data in the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. * * @param src * Image file. * @param os * OutputStream to write the image to. * @param newData * structure containing IPTC data. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void writeIPTC(final File src, final OutputStream os, final PhotoshopApp13Data newData) throws ImageReadException, IOException, ImageWriteException { final ByteSource byteSource = new ByteSourceFile(src); writeIPTC(byteSource, os, newData); } /** * Reads a Jpeg image, replaces the IPTC data in the App13 segment but * leaves the other data in that segment (if present) unchanged and writes * the result to a stream. * * @param byteSource * ByteSource containing Jpeg image data. * @param os * OutputStream to write the image to. * @param newData * structure containing IPTC data. * @throws ImageReadException if there are more than one Photoshop App13 segment, or if * the Photoshop segment cannot be parsed * @throws IOException if it fails to read from the origin byte source, or to write to the * target byte source * @throws ImageWriteException if it fails to write the target image */ public void writeIPTC(final ByteSource byteSource, final OutputStream os, PhotoshopApp13Data newData) throws ImageReadException, IOException, ImageWriteException { final JFIFPieces jfifPieces = analyzeJFIF(byteSource); final List oldPieces = jfifPieces.pieces; final List photoshopApp13Segments = findPhotoshopApp13Segments(oldPieces); if (photoshopApp13Segments.size() > 1) { throw new ImageReadException( "Image contains more than one Photoshop App13 segment."); } List newPieces = removePhotoshopApp13Segments(oldPieces); { // discard old iptc blocks. final List newBlocks = newData.getNonIptcBlocks(); final byte[] newBlockBytes = new IptcParser().writeIPTCBlock(newData.getRecords()); final int blockType = IptcConstants.IMAGE_RESOURCE_BLOCK_IPTC_DATA; final byte[] blockNameBytes = new byte[0]; final IptcBlock newBlock = new IptcBlock(blockType, blockNameBytes, newBlockBytes); newBlocks.add(newBlock); newData = new PhotoshopApp13Data(newData.getRecords(), newBlocks); final byte[] segmentBytes = new IptcParser().writePhotoshopApp13Segment(newData); final JFIFPieceSegment newSegment = new JFIFPieceSegment(JpegConstants.JPEG_APP13_MARKER, segmentBytes); newPieces = insertAfterLastAppSegments(newPieces, Arrays.asList(newSegment)); } writeSegments(os, newPieces); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy