30 lines
522 B
Java
30 lines
522 B
Java
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);
|
|
}
|