-
public interface MultipleMaster
TheMultipleMaster
interface represents Type 1 Multiple Master fonts. A particularFont
object can implement this interface.
-
-
Method Summary
Methods Modifier and Type Method and Description Font
deriveMMFont(float[] axes)
Creates a new instance of a multiple master font based on the design axis values contained in the specified array.Font
deriveMMFont(float[] glyphWidths, float avgStemWidth, float typicalCapHeight, float typicalXHeight, float italicAngle)
Creates a new instance of a multiple master font based on detailed metric information.float[]
getDesignAxisDefaults()
Returns an array of default design values for each axis.String[]
getDesignAxisNames()
Returns the name for each design axis.float[]
getDesignAxisRanges()
Returns an array of design limits interleaved in the form [from->to] for each axis.int
getNumDesignAxes()
Returns the number of multiple master design controls.
-
-
-
Method Detail
-
getNumDesignAxes
int getNumDesignAxes()
Returns the number of multiple master design controls. Design axes include things like width, weight and optical scaling.- Returns:
- the number of multiple master design controls
-
getDesignAxisRanges
float[] getDesignAxisRanges()
Returns an array of design limits interleaved in the form [from->to] for each axis. For example, design limits for weight could be from 0.1 to 1.0. The values are returned in the same order returned bygetDesignAxisNames
.- Returns:
- an array of design limits for each axis.
-
getDesignAxisDefaults
float[] getDesignAxisDefaults()
Returns an array of default design values for each axis. For example, the default value for weight could be 1.6. The values are returned in the same order returned bygetDesignAxisNames
.- Returns:
- an array of default design values for each axis.
-
getDesignAxisNames
String[] getDesignAxisNames()
Returns the name for each design axis. This also determines the order in which the values for each axis are returned.- Returns:
- an array containing the names of each design axis.
-
deriveMMFont
Font deriveMMFont(float[] axes)
Creates a new instance of a multiple master font based on the design axis values contained in the specified array. The size of the array must correspond to the value returned fromgetNumDesignAxes
and the values of the array elements must fall within limits specified bygetDesignAxesLimits
. In case of an error,null
is returned.- Parameters:
axes
- an array containing axis values- Returns:
- a
Font
object that is an instance ofMultipleMaster
and is based on the design axis values provided byaxes
.
-
deriveMMFont
Font deriveMMFont(float[] glyphWidths, float avgStemWidth, float typicalCapHeight, float typicalXHeight, float italicAngle)
Creates a new instance of a multiple master font based on detailed metric information. In case of an error,null
is returned.- Parameters:
glyphWidths
- an array of floats representing the desired width of each glyph in font spaceavgStemWidth
- the average stem width for the overall font in font spacetypicalCapHeight
- the height of a typical upper case chartypicalXHeight
- the height of a typical lower case charitalicAngle
- the angle at which the italics lean, in degrees counterclockwise from vertical- Returns:
- a
Font
object that is an instance ofMultipleMaster
and is based on the specified metric information.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
19/12/2024 12:26:39 Cette version de la page est en cache (à la date du 19/12/2024 12:26:39) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/font/multiplemaster.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.