-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageLoader.java
executable file
·84 lines (67 loc) · 2.18 KB
/
ImageLoader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package jToolkit4ProgPipeline.file.loader.image;
import jToolkit4ProgPipeline.file.utils.buffer.BufferTools;
import org.lwjgl.BufferUtils;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.awt.image.DataBufferByte;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.IntBuffer;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Class for loading BMP, PNG or JPEG images. This class represents low - level
* of image, which means that you can achieve access to bytes of image
* @author Astemit Yeleev
*/
public final class ImageLoader {
private BufferedImage image;
public ImageLoader() {
// In some cases empty constructor required
}
public ImageLoader(String path) {
File f = new File(path);
try {
image = ImageIO.read(f);
if (image == null) {
throw new IOException("Loading image error");
}
} catch (IOException ex) {
Logger.getLogger(ImageLoader.class.getName()).log(Level.SEVERE, null, ex);
}
}
public BufferedImage getBufferedImage () {
return image;
}
public byte[] getArray () {
return ((DataBufferByte) image.getRaster().getDataBuffer()).getData();
}
public byte[][] getMatrix () {
return ((DataBufferByte) image.getRaster().getDataBuffer()).getBankData();
}
public ByteBuffer getImageData() {
byte data[] = getArray();
return BufferTools.toFlippedByteBuffer(data);
}
public int getImageWidth () {
return image.getWidth();
}
public int getImageHeight () {
return image.getHeight();
}
public boolean hasAlpha () {
return image.getColorModel().hasAlpha();
}
public int getBlue () {
return image.getGraphics().getColor().getBlue();
}
public int getGreen () {
return image.getGraphics().getColor().getGreen();
}
public int getRed () {
return image.getGraphics().getColor().getRed();
}
}