blob: 8bb6ed7913a557f1d5b277b977fe27e94ad11446 [file] [edit]
/*
* Copyright (c) 2014-2021 by Wen Yu
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 2
* or any later version.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
*
* Change History - most recent changes go on top of previous changes
*
* TiffExif.java
*
* Who Date Description
* ==== ======= =================================================
* WY 11Feb2015 Moved showMetadata() to Exif
* WY 06Feb2015 Added showMetadata()
* WY 03Feb2015 Initial creation
*/
package pixy.meta.tiff;
import java.io.IOException;
import java.io.OutputStream;
import pixy.image.tiff.IFD;
import pixy.meta.exif.Exif;
public class TiffExif extends Exif {
public TiffExif() {
;
}
public TiffExif(IFD imageIFD) {
super(imageIFD);
}
/**
* Write the EXIF data to the OutputStream
*
* @param os OutputStream
* @throws Exception
*/
@Override
public void write(OutputStream os) throws IOException {
ensureDataRead();
; // We won't write anything here
}
}