public class ImageInformation
extends java.lang.Object
ImageInformation
object
only once and reuse it every time you need it. It's safe to use the same
ImageInformation
reference for several players and in
multiple threads.Constructor and Description |
---|
ImageInformation(byte[] bytes) |
ImageInformation(java.io.File file)
Creates a new image information object and loads an image / texture from
a file.
|
ImageInformation(Plugin plugin,
java.lang.String resource)
Creates a new image information object and loads an image / texture from the plugin
jar file.
|
ImageInformation(java.lang.String filepath)
Creates a new image information object and loads an image / texture from
a file.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
java.lang.String |
getChecksum()
Gets the MD5 checksum of this file.
|
byte[] |
getData()
Gets the byte data of the file.
|
java.lang.String |
getExtension()
Gets the file extension.
|
java.lang.String |
getFilename()
Gets the filename.
|
int |
hashCode() |
public ImageInformation(Plugin plugin, java.lang.String resource)
plugin
- a reference to the plugin. This is required to make sure the game
loads the resource from the correct plugin jar.resource
- the path to the resource (inside the jar file).public ImageInformation(java.lang.String filepath)
filepath
- the path to the image file on the harddrive.ImageInformation(java.io.File)
public ImageInformation(java.io.File file)
file
- the file representing the path to the image on the harddrive.ImageInformation(java.lang.String)
public ImageInformation(byte[] bytes)
public byte[] getData()
public java.lang.String getFilename()
public java.lang.String getExtension()
public java.lang.String getChecksum()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object