gale/src/main/org/atriasoft/gale/tools/ImageRawData.java
Edouard DUPIN fb8d53359e [FIX] arbo
2025-05-24 00:24:25 +02:00

35 lines
576 B
Java

package org.atriasoft.gale.tools;
import java.nio.ByteBuffer;
public class ImageRawData {
private int width;
private int height;
private ByteBuffer buffer;
private boolean hasAlpha;
public ImageRawData(ByteBuffer buffer, int width, int height, boolean hasAlpha){
this.buffer = buffer;
this.width = width;
this.height = height;
this.hasAlpha = hasAlpha;
}
public int getWidth(){
return width;
}
public int getHeight(){
return height;
}
public ByteBuffer getBuffer(){
return buffer;
}
public boolean isHasAlpha() {
return hasAlpha;
}
}