public class SoFont extends SoNode
Starting with Open Inventor 6.0, text computation is done using the FreeType 2 library (www.freetype.org). FreeType is a customizable and portable software font engine which is capable of producing high-quality output. FreeType allows support of more font formats than in previous Open Inventor versions: TrueType, Type 1, CID-keyed Type 1, CFF, SFNT-based bitmap, X11 PCF (including gz compressed fonts), Windows FNT, BDF, PFR, dfont, etc.
Starting with Open Inventor 6.0, Unicode text strings are supported. Please note that many fonts have limited support for Unicode characters, especially the Japanese, Chinese, and Korean glyphs.
Some font representing large extended characters and symbols Unicode set can be found:
Note:
SoFont
will not issue an error message if the specified font is not found at runtime. It will quietly use the default font (e.g. Times New Roman on Windows) as a fallback. Applications can use the static method isAvailableFont() to check if a specific font is available. Default font can be setup explicitly by enironment variable OIV_FONT_NAME or programmatically see SoFontNameElement.setDefault() SoFontNameElement.getDefault()
.
Font name:
The font name can be set either of two ways:
Typical family names include:
Typical style names include:
Loadable fonts:
The names of all loadable font files available in your environment (depending on Open Inventor environment variables) can be obtained by calling getAvailableFonts().
Font file location:
To find the font file on your system, Open Inventor uses several rules. The following directories are searched (in this order):
The system-default font directory depends on the platform:
Windows | (Retrieved from the registry. Often c:/Windows/Fonts) |
Solaris | /usr/openwin/lib/X11/fonts/Type1/outline |
AIX | /usr/lib/X11/fonts/Type1/DPS |
HP-UX | /usr/lib/X11/fonts/type1.st/typefaces |
OSF | /usr/lib/X11/fonts/Type1Adobe |
Linux | /usr/share/X11/fonts;/usr/share/fonts;/usr/lib/X11/fonts |
MacOS | /Library/Fonts |
Other | /usr/lib/DPS/outline/base |
Environment variable OIV_FONT_PATH contains a colon-separated or semicolon-separated list of directories to search for font definition files.
Stroke fonts, which are drawn with vectors rather than triangles, can provide higher performance, and also better readability at small sizes. Stroke fonts can be used with SoText3
and SoAnnoText3
, but not with other text nodes, such as SoAsciiText
. Stroke fonts cannot be extruded. Stroke fonts character code valid values must be in the range [32 .. 127]
To use a stroke font, specify one of the following stroke font names:
"OIV_Simplex_TGS"
"OIV_Simplex_Roman"
"OIV_Complex_Roman"
"OIV_Duplex_Roman"
"OIV_Triplex_Roman"
"OIV_Simplex_Script"
"OIV_Complex_Script"
"OIV_Simplex_Greek"
"OIV_Complex_Greek"
"OIV_Gothic_German"
"OIV_Gothic_Italian"
"OIV_Gothic_English"
"OIV_Complex_Cyrillic"
"OIV_Upper_Case_Mathematics"
"OIV_Lower_Case_Mathematics"
"OIV_Music"
"OIV_Meteorology"
"OIV_Symbols"
"OIV_Astrology"
"OIV_Complex_Italic"
"OIV_Triplex_Italic"
The following figure shows an assortment of characters from each stroke font.
Stroked fonts are subject to the current line attributes, line width and line pattern, which are specified with SoDrawStyle
.
By default, the stroke font files are found in $OIVHOME/data/fonts. If you move them to a different directory, set the environment variable OIV_STROKE_FONT_PATH to be the path to the new directory.
Open Inventor uses several rules to find the font file on your system. The following directories are searched (in this order): (NB: If one of these directories exists, the rest are ignored)
Stroke fonts - Kanji and Katakana:
Additional stroke font files are available for Kanji and Katakana output. To produce Kanji or Katakana stroke output, set the font to any one of the stroke font names. Then, for the text string, pass the desired multi-byte character string (MBCS) to Open Inventor, using the usual techniques. The font file name is not used except as a flag to indicate that stroke output should be produced.
Making a call to the getAvailableFonts() method causes Open Inventor to build an internal font name cache. This cache allows quick access to a newly requested font name without requiring Open Inventor to parse all found font files on your system. In the general case, when the #name field changes, Open Inventor searches for the corresponding font file and adds its name to its cache for faster retrieval the next time. For example, a request to "Arial : Regular" font name will be internally associated with the arial.ttf font file. The next time "Arial : Regular" is requested, Open Inventor will use arial.ttf. Specifying a not-previously-accessed string as a font name will cause Open Inventor to parse this new string to find a new association. If no association is found, a default font is used for this association. For instance, "Arial : Regul" doesn't necessarily correspond to the arial.ttf font file. To reset the font name cache, call the getAvailableFonts() method and specify the clearDB parameter as true
Font rendering - caching strategy:
The maximum number of caches used during text rendering is specified by the OIV_MAX_FONT_CACHES environment variable. The default number of caches is 20. A cache corresponds to a set of parameters that are taken into account during the computation of a text string. These parameters can be, depending on the kind of text node you are using, font name, size, complexity, etc. The same cache is used for strings that have exactly the same appearance (but not necessarily the same characters). Note that the cache depends on color only for text bitmap rendering. That is, 2D text with renderStyle POLYGON.
It's important to specify an appropriate value for the maximum number of font caches as application performance can be highly dependent on the font caching. In fact, if not enough caches are available, in some cases, Open Inventor will have to recompute text metrics.
Font render style:
The renderStyle
field allows you to control the rendering mode for the font. It's possible to render 3D text, e.g. SoText3
, using filled polygons (default), filled and outlined polygons or textured quads. It's possible to render 2D text, e.g. SoText2
, using bitmaps (default) or textured quads.
Text rendered in POLYGON renderStyle with high complexity (for nice appearance) may require a large number of polygons and reduce performance. Quality is controlled by the
value field of SoComplexity
.
Text rendered in TEXTURE modes uses very few polygons and takes advantage of fast texturing hardware on modern graphics boards. Quality is controlled by the
textureQuality field of SoComplexity
.
NOTE: When using a TEXTURE renderStyle, it is not possible to apply a texture image (e.g. SoTexture2
) to the text geometry and the SoText3
geometry is not extruded even if the parts field is set to ALL.
Textured font rendering considerations:
Texture generation quality depends on the current complexity (defined by the SoComplexity.value
field) and the current textureQuality (defined by the SoComplexity.textureQuality
field) in collaboration with a texture resolution value range defined by the SoTextProperty.textureQualityRange
field. Increasing these values will improve the quality of the output, but at the cost of decreased performance and increased memory consumption.
If render style TEXTURE is selected, then a texture image is generated for each character. The image of the character is automatically antialiased, which means that some pixels in the texture image will be transparent or partially transparent. Text rendered in this mode is a "transparent" object like any other transparent geometry, and may be rendered incorrectly depending on the order in which objects are rendered. To avoid this issue, you can set the transparency type for rendering the scene graph to, for example, SORTED_PIXEL (see SoGLRenderAction
). Or, set the text renderStyle
to TEXTURE_DELAYED. This allows delayed rendering of just the text objects. Note that even though setting the renderStyle
field to TEXTURE_DELAYED is a very simple solution, it can reduce performance due to less efficient render caching. Another option is to move the text node definition in the scene graph to be after all shapes.
For text rendering with small font sizes, the default anti-aliasing can lead to undesirable blurring effects. The anti-aliasing level can be changed through the use of the SoTextProperty.aliasingFactor
.
File format/default:
Font {
name | "defaultFont" |
size | 10 |
renderStyle | POLYGON |
Action behavior:
SoGLRenderAction
, SoCallbackAction
, SoGetBoundingBoxAction
, SoRayPickAction
Sets the font name and size in the current traversal state. Sets: SoFontNameElement
, SoFontSizeElement
, SoFontRenderStyleElement
, SoTextOutlineEnabledElement
See also:
Modifier and Type | Class and Description |
---|---|
static class |
SoFont.RenderStyles
Render style.
|
SoNode.RenderModes
Inventor.ConstructorCommand
Modifier and Type | Field and Description |
---|---|
SoSFString |
name
This field specifies the font name.
|
SoSFEnum<SoFont.RenderStyles> |
renderStyle
This field specifies the rendering style of the font.
|
SoSFFloat |
size
This field specifies the font size.
|
VERBOSE_LEVEL, ZeroHandle
Constructor and Description |
---|
SoFont()
Creates a font node with default settings.
|
Modifier and Type | Method and Description |
---|---|
static void |
addFontPaths(java.lang.String name_11936)
Specifies paths for searching for font files.
|
static void |
clearFontNameCache()
Clears the Open Inventor internal font name cache, i.e., the list of available fonts.
|
static void |
enableJapaneseSF()
Calls enableJapaneseSF(true).
|
static void |
enableJapaneseSF(boolean flag)
Sets flag to enable strings to be interpreted using the Japanese MBCS encoding.
|
static int |
getCurrNumFontCaches()
Returns the current number of caches used for font rendering.
|
static java.lang.String |
getFontPaths()
Gets current font path list.
|
static int |
getNumFontCaches()
Returns the maximum number of caches that can be used for font rendering.
|
static boolean |
isAvailableFont(java.lang.String name_11938)
Returns true if the specified font is available for use by Open Inventor.
|
static boolean |
isJapaneseSFEnabled()
Gets flag that indicates whether strings should be interpreted using the MCS Japanese MBCS encoding.
|
static void |
setFontPaths(java.lang.String name_11934)
Specifies paths for searching for font files.
|
static void |
setNumFontCaches(int maxNumCaches)
Sets the maximum number of caches that can be used for font rendering.
|
affectsState, callback, copy, copy, distribute, doAction, getAlternateRep, getBoundingBox, getByName, getMatrix, getPrimitiveCount, getRenderEngineMode, getRenderUnitID, GLRender, GLRenderBelowPath, GLRenderInPath, GLRenderOffPath, grabEventsCleanup, grabEventsSetup, handleEvent, isBoundingBoxIgnoring, isOverride, pick, rayPick, search, setOverride, touch, write
copyFieldValues, copyFieldValues, enableNotify, fieldsAreEqual, get, getAllFields, getEventIn, getEventOut, getField, getFieldName, hasDefaultValues, isNotifyEnabled, set, setToDefaults
dispose, getName, isDisposable, isSynchronizable, setName, setSynchronizable
getNativeResourceHandle
public final SoSFString name
public final SoSFFloat size
public final SoSFEnum<SoFont.RenderStyles> renderStyle
public static void enableJapaneseSF()
public static void setNumFontCaches(int maxNumCaches)
SoFont.renderStyle
causes the creation of new caches. Properties that cause a cache to be rebuilt include the following:
SoAsciiText
: font name, size, render style, text orientation
SoText2
: font name, size, viewport size, render style, text orientation
SoText3
: font name, size, render style, text orientation, profile definition
Note: This list is not exhaustive.
public static boolean isJapaneseSFEnabled()
public static boolean isAvailableFont(java.lang.String name_11938)
public static void enableJapaneseSF(boolean flag)
Set this flag to false if you want to use characters in the range 128-255 (ISO Latin-1) with stroke fonts.
NOTE: In this case the TGS Roman Simplex font will be used regardless of the stroke font specified (limitation).
[Win32] If the current code page is Japanese, the standard Microsoft MBCS encoding is used independent of this flag.
public static int getNumFontCaches()
public static void addFontPaths(java.lang.String name_11936)
public static java.lang.String getFontPaths()
public static void clearFontNameCache()
public static int getCurrNumFontCaches()
public static void setFontPaths(java.lang.String name_11934)
Generated on July 31, 2019, Copyright © Thermo Fisher Scientific. All rights reserved. http://www.openinventor.com