Tesseract
3.02
|
Static Public Member Functions | |
static void | createImage (String name, int width, int height, int bitsPerPixel) |
static void | openImage (String location) |
static PImage | getImage (String name) |
static void | parseData (String inputLine) |
static boolean | getReadImageData () |
static int | getMissingRemainingBytes () |
The ScrollViewImageHandler is a helper class which takes care of image processing. It is used to construct an Image from the message-stream and basically consists of a number of utility functions to process the input stream.
Definition at line 26 of file SVImageHandler.java.
|
inlinestatic |
Starts creation of a new image.
Definition at line 146 of file SVImageHandler.java.
|
inlinestatic |
Find the image corresponding to a given name
Definition at line 189 of file SVImageHandler.java.
|
inlinestatic |
Computes how many bytes of the image data are still missing
Definition at line 225 of file SVImageHandler.java.
|
inlinestatic |
Returns whether we a currently reading image data or not
Definition at line 220 of file SVImageHandler.java.
|
inlinestatic |
Opens an Image from location. This means the image does not have to be actually transfered over the network. Thus, it is a lot faster than using the createImage method.
location | The (local) location from where to open the file. This is also the internal name associated with the image (if you want to draw it). |
Definition at line 183 of file SVImageHandler.java.
|
inlinestatic |
Gets called while currently reading image data. Decides, how to process it (which image type, whether all data is there).
Definition at line 197 of file SVImageHandler.java.