com.github.ojil.core.ImageIo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojil-core Show documentation
Show all versions of ojil-core Show documentation
Open Java Imaging Library.
package com.github.ojil.core;
import java.io.IOException;
public interface ImageIo {
public void writeFile(Image image, int quality, String path) throws IOException;
public Image readFile(String path);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy