~repos /gdx-studio
git clone https://pyrossh.dev/repos/gdx-studio.git
An IDE for creating Games using libgdx and Java supported on all platforms Android, iOS, Desktop
src_libs/com/github/axet/lookup/common/ImageBinary.java
package com.github.axet.lookup.common;
import java.awt.image.BufferedImage;import java.util.List;
/** * Inteface for ImageBinaryGray and ImageBinaryRGB classes * * @author axet * */
public interface ImageBinary {
public List<ImageBinaryChannel> getChannels();
public int getWidth() ;
public int getHeight() ;
public int size();
public BufferedImage getImage();
}