|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.newdawn.slick.opengl.TGAImageData
public class TGAImageData
A utility to load TGAs. Note: NOT THREAD SAFE Fresh cut of code but largely influeneced by the TGA loading class provided as part of the Java Monkey Engine (JME). Why not check out what they're doing over at http://www.jmonkeyengine.com. kudos to Mark Powell.
Constructor Summary | |
---|---|
TGAImageData()
Create a new TGA Loader |
Method Summary | |
---|---|
void |
configureEdging(boolean edging)
Configure the edging that can be used to make texture edges loop more cleanly |
int |
getDepth()
Get the last bit depth read from a TGA |
int |
getHeight()
Get the last height read from a TGA |
java.nio.ByteBuffer |
getImageBufferData()
Get the store image |
int |
getTexHeight()
Get the ast required texture height for a loaded image |
int |
getTexWidth()
Get the last required texture width for a loaded image |
int |
getWidth()
Get the last width read from a TGA |
java.nio.ByteBuffer |
loadImage(java.io.InputStream fis)
Load a image from the specified stream |
java.nio.ByteBuffer |
loadImage(java.io.InputStream fis,
boolean flipped,
boolean forceAlpha,
int[] transparent)
Load a image from the specified stream |
java.nio.ByteBuffer |
loadImage(java.io.InputStream fis,
boolean flipped,
int[] transparent)
Load a image from the specified stream |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TGAImageData()
Method Detail |
---|
public int getDepth()
ImageData
getDepth
in interface ImageData
ImageData.getDepth()
public int getWidth()
ImageData
getWidth
in interface ImageData
ImageData.getWidth()
public int getHeight()
ImageData
getHeight
in interface ImageData
ImageData.getHeight()
public int getTexWidth()
ImageData
getTexWidth
in interface ImageData
ImageData.getTexWidth()
public int getTexHeight()
ImageData
getTexHeight
in interface ImageData
ImageData.getTexHeight()
public java.nio.ByteBuffer loadImage(java.io.InputStream fis) throws java.io.IOException
LoadableImageData
loadImage
in interface LoadableImageData
fis
- The stream from which we'll load the TGA
java.io.IOException
- Indicates a failure to read the TGALoadableImageData.loadImage(java.io.InputStream)
public java.nio.ByteBuffer loadImage(java.io.InputStream fis, boolean flipped, int[] transparent) throws java.io.IOException
LoadableImageData
loadImage
in interface LoadableImageData
fis
- The stream from which we'll load the TGAflipped
- True if we loading in flipped mode (used for cursors)transparent
- The colour to interpret as transparent or null if none
java.io.IOException
- Indicates a failure to read the TGALoadableImageData.loadImage(java.io.InputStream, boolean, int[])
public java.nio.ByteBuffer loadImage(java.io.InputStream fis, boolean flipped, boolean forceAlpha, int[] transparent) throws java.io.IOException
LoadableImageData
loadImage
in interface LoadableImageData
fis
- The stream from which we'll load the TGAflipped
- True if we loading in flipped mode (used for cursors)forceAlpha
- Force the output to have an alpha channeltransparent
- The colour to interpret as transparent or null if none
java.io.IOException
- Indicates a failure to read the TGALoadableImageData.loadImage(java.io.InputStream, boolean, boolean, int[])
public java.nio.ByteBuffer getImageBufferData()
ImageData
getImageBufferData
in interface ImageData
ImageData.getImageBufferData()
public void configureEdging(boolean edging)
LoadableImageData
configureEdging
in interface LoadableImageData
edging
- True if we should edgeLoadableImageData.configureEdging(boolean)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |