Input stream interface. This delegate is called when the internal input buffer is empty.
Writes a JPEG image to a file or stream. num_channels must be 1 (Y), 3 (RGB), 4 (RGBA), image pitch must be width*num_channels. note that alpha will not be stored in jpeg file.
Writes JPEG image to file. num_channels must be 1 (Y), 3 (RGB), 4 (RGBA), image pitch must be width*num_channels. note that alpha will not be stored in jpeg file.
Writes JPEG image to file. num_channels must be 1 (Y), 3 (RGB), 4 (RGBA), image pitch must be width*num_channels. note that alpha will not be stored in jpeg file.
Writes JPEG image to file. num_channels must be 1 (Y), 3 (RGB), 4 (RGBA), image pitch must be width*num_channels. note that alpha will not be stored in jpeg file.
Writes JPEG image to file. num_channels must be 1 (Y), 3 (RGB), 4 (RGBA), image pitch must be width*num_channels. note that alpha will not be stored in jpeg file.
decompress JPEG image from disk file. you can specify required color components in req_comps (3 for RGB or 4 for RGBA), or leave it as is to use image value.
decompress JPEG image from disk file. you can specify required color components in req_comps (3 for RGB or 4 for RGBA), or leave it as is to use image value.
decompress JPEG image from memory buffer. you can specify required color components in req_comps (3 for RGB or 4 for RGBA), or leave it as is to use image value.
decompress JPEG image, what else? you can specify required color components in req_comps (3 for RGB or 4 for RGBA), or leave it as is to use image value.
read JPEG image header, determine dimensions and number of components. return false if image is not JPEG (i hope).
read JPEG image header, determine dimensions and number of components. return false if image is not JPEG (i hope).
read JPEG image header, determine dimensions and number of components. return false if image is not JPEG (i hope).
Encodes an image as jpeg in memory.
decompress JPEG image from disk file. Returns null if loading failed for any reason.
decompress JPEG image from memory buffer.
decompress JPEG image, what else?
JPEG compression parameters structure.
Loads a JPEG image from a memory buffer or a file.
req_comps can be 1 (grayscale), 3 (RGB), or 4 (RGBA). On return, width/height will be set to the image's dimensions, and actual_comps will be set to the either 1 (grayscale) or 3 (RGB). Requesting a 8 or 32bpp image is currently a little faster than 24bpp because the jpeg_decoder class itself currently always unpacks to either 8 or 32bpp.