# Functions
ClearTerminal clears current terminal buffer using ANSI escape code.
New creates a new empty ANSImage ready to draw on it.
NewFromFile creates a new ANSImage from a file.
NewFromReader creates a new ANSImage from an io.Reader.
NewFromURL creates a new ANSImage from an image URL.
NewScaledFromFile creates a new scaled ANSImage from a file.
NewScaledFromReader creates a new scaled ANSImage from an io.Reader.
NewScaledFromURL creates a new scaled ANSImage from an image URL.
# Constants
ANSImage block size in pixels (dithering mode).
ANSImage block size in pixels (dithering mode).
ANSImage dithering modes: no dithering (classic mode: half block based), chars (use characters to represent brightness), blocks (use character blocks to represent brightness).
ANSImage dithering modes: no dithering (classic mode: half block based), chars (use characters to represent brightness), blocks (use character blocks to represent brightness).
ANSImage dithering modes: no dithering (classic mode: half block based), chars (use characters to represent brightness), blocks (use character blocks to represent brightness).
ANSImage scale modes: resize (full scaled to area), fill (resize and crop the image with a center anchor point to fill area), fit (resize the image to fit area, preserving the aspect ratio).
ANSImage scale modes: resize (full scaled to area), fill (resize and crop the image with a center anchor point to fill area), fit (resize the image to fit area, preserving the aspect ratio).
ANSImage scale modes: resize (full scaled to area), fill (resize and crop the image with a center anchor point to fill area), fit (resize the image to fit area, preserving the aspect ratio).
# Variables
ErrHeightNonMoT occurs when ANSImage height is not a Multiple of Two value.
ErrImageDownloadFailed occurs in the attempt to download an image and the status code of the response is not "200 OK".
ErrInvalidBoundsMoT occurs when ANSImage height or width are invalid values (Multiple of Two).
ErrOutOfBounds occurs when ANSI-pixel coordinates are out of ANSImage bounds.
# Type aliases
DitheringMode type is used for image scale dithering mode constants.
ScaleMode type is used for image scale mode constants.