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

com.nmote.iim4j.stream.IIMOutputStream Maven / Gradle / Ivy

Go to download

IIM4J allows Java programmers to read, write and process IPTC IIM version 4 files.

The newest version!
/*
 * Copyright (c) Nmote Ltd. 2004-2015. All rights reserved. 
 * See LICENSE doc in a root of project folder for additional information.
 */

package com.nmote.iim4j.stream;

import java.io.Closeable;
import java.io.IOException;

/**
 * IIMOutputStream
 */
public interface IIMOutputStream extends Closeable {

	void write(int ch) throws IOException;

	void write(byte[] buffer) throws IOException;

	void write(byte[] buffer, int offset, int length) throws IOException;

	void close() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy