Color type and operations. Port of ae.utils.graphics.
Drawing functions. Port of ae.utils.graphics.
Additional graphics primitives, and image loading.
Font high-level interface.
In-memory images.
* 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. JPEG loader.
Mipmap pyramid implementation.
D translation of stb_image-1.33 (http://nothings.org/stb_image.c) This port only supports:
D translation of stb_truetype v0.7 by Sean Barrett More information on http://nothings.org/stb/stb_truetype.h Removed: - texture baking API - font finding in the TTF itself. Make sure there is only one font in the TTF.
A View is the base abstraction for images. Port of ae.utils.graphics.