FontImageMapDescriptor

data class FontImageMapDescriptor(val fontUrl: String, val size: Double, val alphabet: Set<Char>, val contentScale: Double)(source)

A data class representing the descriptor for a font image map.

This class provides the necessary information to define the mapping of characters to their graphical representation based on a font.

Constructors

Link copied to clipboard
constructor(fontUrl: String, size: Double, alphabet: Set<Char>, contentScale: Double)

Properties

Link copied to clipboard

The set of characters to be included in the image map.

Link copied to clipboard

The scaling factor for rendering the font.

Link copied to clipboard

The URL of the font to be used for creating the image map.

Link copied to clipboard

The size of the font to be rendered.