C F G I M O P R S T V 

C

changeMode(byte) - Method in class org.java_lcw.jil.Image
Change the MODE of the current Image.
copy() - Method in class org.java_lcw.jil.Image
 
create(byte, int, int) - Static method in class org.java_lcw.jil.Image
Main Method for creating a new Image
cut(int, int, int, int) - Method in class org.java_lcw.jil.Image
 

F

fillColor(Image.Color) - Method in class org.java_lcw.jil.Image
Fill current Image with this color
fromBufferedImage(BufferedImage) - Static method in class org.java_lcw.jil.Image
Create an Image from a BufferedImage from AWT - The new Image will always be RGBA type
fromByteArray(byte, int, int, byte[]) - Static method in class org.java_lcw.jil.Image
Create an Image object from a byte Array.
fromImageData(ImageData) - Static method in class org.java_lcw.jil.Image
This takes ImageData from SWT and makes an Image Object.

G

getAlpha() - Method in class org.java_lcw.jil.Image.Color
 
getBlue() - Method in class org.java_lcw.jil.Image.Color
 
getBPP() - Method in class org.java_lcw.jil.Image
Get the number of bitsPerPixel, this is the same as the Image.MODE_ of the Image
getChannels() - Method in class org.java_lcw.jil.Image
Returns the number channels in this Image (BPP/8)
getGreen() - Method in class org.java_lcw.jil.Image.Color
 
getGrey() - Method in class org.java_lcw.jil.Image.Color
 
getHeight() - Method in class org.java_lcw.jil.Image
Returns the height of this Image
getPixel(int, int) - Method in class org.java_lcw.jil.Image
The a color for a given pixel
getPixelInChannel(int, int, byte) - Method in class org.java_lcw.jil.Image
 
getRed() - Method in class org.java_lcw.jil.Image.Color
 
getWidth() - Method in class org.java_lcw.jil.Image
Returns the width of this Image

I

Image - Class in org.java_lcw.jil
Main Image object used to construct new Image files.
Image.Color - Class in org.java_lcw.jil
This class is how colors are passed around to/from the Image Object
Image.Color(byte, byte, byte) - Constructor for class org.java_lcw.jil.Image.Color
Construct the color with RGB values set
Image.Color(byte, byte, byte, byte) - Constructor for class org.java_lcw.jil.Image.Color
Construct the color with RGBA values set
Image.Color(byte) - Constructor for class org.java_lcw.jil.Image.Color
Construct the color with grey values set
Image.Color() - Constructor for class org.java_lcw.jil.Image.Color
Construct a Color object with no colors set (everything is 0)
Image.ImageException - Exception in org.java_lcw.jil
 
Image.ImageException() - Constructor for exception org.java_lcw.jil.Image.ImageException
 
Image.ImageException(String) - Constructor for exception org.java_lcw.jil.Image.ImageException
 
Image.ImageType - Enum in org.java_lcw.jil
Image Types for Image Object to use (open/save)
Image.ScaleType - Enum in org.java_lcw.jil
ScaleTypes that can be used when resizing an Image.

M

mkRandom() - Method in class org.java_lcw.jil.Image
Sets this Image to random Data
MODE_L - Static variable in class org.java_lcw.jil.Image
MODE_L is grey scaled image (8 bits per pixel, 1 channel)
MODE_RGB - Static variable in class org.java_lcw.jil.Image
MODE_RGB is an RGB (Red Green Blue) image Each color is its own Channel (24 bits per pixel, 3 channels)
MODE_RGBA - Static variable in class org.java_lcw.jil.Image
MODE_RGBA is an RGBA (Red Green Blue Alpha) image Each color and alpha has its own Channel (32 bits per pixel, 4 channels)

O

open(String) - Static method in class org.java_lcw.jil.Image
Static Method that allows you to open a file, just pass in the path/filename.
open(String, Image.ImageType) - Static method in class org.java_lcw.jil.Image
Static Method that allows you to open a file, just pass in the path/filename.
org.java_lcw.jil - package org.java_lcw.jil
 

P

paste(int, int, Image) - Method in class org.java_lcw.jil.Image
Paste the given Image object onto this Image If the given Image is taller or wider then this Image we only merge the visible bits onto this Image

R

resize(int, int) - Method in class org.java_lcw.jil.Image
This resizes the Image, uses the Nearest Neighbor scaler, and keeps aspect ratio
resize(int, int, boolean) - Method in class org.java_lcw.jil.Image
This resizes the Image, uses the Nearest Neighbor scaler, and keeps aspect ratio
resize(int, int, boolean, Image.ScaleType) - Method in class org.java_lcw.jil.Image
This resizes the Image

S

save(String) - Method in class org.java_lcw.jil.Image
Save the image to the given file name.
save(String, Image.ImageType) - Method in class org.java_lcw.jil.Image
Save the image to the given file name.
setAlpha(byte) - Method in class org.java_lcw.jil.Image.Color
Set the alpha value on this color object
setBlue(byte) - Method in class org.java_lcw.jil.Image.Color
Set the blue value on this color object
setChannel(byte, byte[]) - Method in class org.java_lcw.jil.Image
 
setGreen(byte) - Method in class org.java_lcw.jil.Image.Color
Set the green value on this color object
setGrey(byte) - Method in class org.java_lcw.jil.Image.Color
Set the Grey value on this Color Object
setL(byte) - Method in class org.java_lcw.jil.Image.Color
Set the grey value on this color object(overrides all rgb values)
setPixel(int, int, Image.Color) - Method in class org.java_lcw.jil.Image
Set a pixel in this image to a given Color
setPixelInChannel(int, int, byte, byte) - Method in class org.java_lcw.jil.Image
 
setRed(byte) - Method in class org.java_lcw.jil.Image.Color
Set the Red value on this color object
setRGB(byte, byte, byte) - Method in class org.java_lcw.jil.Image.Color
Set the RGB Value on this Color Object
setRGBA(byte, byte, byte, byte) - Method in class org.java_lcw.jil.Image.Color
Set the RGBA Value on this Color Object

T

toArray() - Method in class org.java_lcw.jil.Image
Outputs this image to a ByteArray.
toBufferedImage() - Method in class org.java_lcw.jil.Image
Take the current Image object and make a BufferedImage out of it.
toImageData() - Method in class org.java_lcw.jil.Image
Create an SWT ImageData object based from the current Image object
toString() - Method in class org.java_lcw.jil.Image.Color
 

V

valueOf(String) - Static method in enum org.java_lcw.jil.Image.ImageType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.java_lcw.jil.Image.ScaleType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.java_lcw.jil.Image.ImageType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.java_lcw.jil.Image.ScaleType
Returns an array containing the constants of this enum type, in the order they are declared.
C F G I M O P R S T V