first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
package jxl.write;
import java.io.File;
import jxl.biff.drawing.Drawing;
import jxl.biff.drawing.DrawingGroup;
import jxl.biff.drawing.DrawingGroupObject;
public class WritableImage extends Drawing {
public WritableImage(double x, double y, double width, double height, File image) {
super(x, y, width, height, image);
}
public WritableImage(double x, double y, double width, double height, byte[] imageData) {
super(x, y, width, height, imageData);
}
public WritableImage(DrawingGroupObject d, DrawingGroup dg) {
super(d, dg);
}
public double getColumn() {
return getX();
}
public void setColumn(double c) {
setX(c);
}
public double getRow() {
return getY();
}
public void setRow(double c) {
setY(c);
}
public double getWidth() {
return super.getWidth();
}
public void setWidth(double c) {
super.setWidth(c);
}
public double getHeight() {
return super.getHeight();
}
public void setHeight(double c) {
super.setHeight(c);
}
public File getImageFile() {
return super.getImageFile();
}
public byte[] getImageData() {
return super.getImageData();
}
}