com.github.ojil.core.DefaultIo 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;
public class DefaultIo implements ImageIo {
@Override
public void writeFile(Image image, int quality, String path) {
}
@Override
public Image readFile(String path) {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy