Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/Image.java

30 lines
522 B
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
package jxl;
import java.io.File;
import jxl.common.LengthUnit;
public interface Image {
double getColumn();
double getRow();
double getWidth();
double getHeight();
File getImageFile();
byte[] getImageData();
double getWidth(LengthUnit paramLengthUnit);
double getHeight(LengthUnit paramLengthUnit);
int getImageWidth();
int getImageHeight();
double getHorizontalResolution(LengthUnit paramLengthUnit);
double getVerticalResolution(LengthUnit paramLengthUnit);
}