[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <fontconfig/fontconfig.h> #include <fontconfig/fcfreetype.h> |
3.1 Data Types | ||
3.2 Functions |
While fontconfig is designed to be extensible, it provides a comprehensive set of standard properties and values for fonts.
The following table gives the list of standard font properties. The property name is represented as a string. In C code a C preprocessor symbol may be used to help with typo detection.
Property CPP symbol Type Description family FC_FAMILY String Font family name style FC_STYLE String Font style. Overrides weight and slant slant FC_SLANT Int Italic, oblique or roman weight FC_WEIGHT Int Light, medium, demibold, bold or black size FC_SIZE Double Point size aspect FC_ASPECT Double Stretch glyphs horizontally, then hint pixelsize FC_PIXEL_SIZE Double Pixel size spacing FC_SPACING Int Proportional, monospace or charcell foundry FC_FOUNDRY String Font foundry name antialias FC_ANTIALIAS Bool Should glyphs be antialiased? hinting FC_HINTING Bool Should the rasterizer use hinting? verticallayout FC_VERTICAL_LAYOUT Bool Use vertical layout autohint FC_AUTOHINT Bool Use autohinter instead of normal hinter globaladvance FC_GLOBAL_ADVANCE Bool Use font global advance data file FC_FILE String The filename holding the font index FC_INDEX Int The index of the font within the file ftface FC_FT_FACE FT_Face Use the specified FreeType face object rasterizer FC_RASTERIZER String Which rasterizer is in use outline FC_OUTLINE Bool Whether the glyphs are outlines scalable FC_SCALABLE Bool Whether glyphs can be scaled scale FC_SCALE Double Point->pixel conversion scale factor dpi FC_DPI Double Target dots per inch rgba FC_RGBA Int unknown, rgb, bgr, vrgb, vbgr, none - subpixel geometry source FC_SOURCE String X11, freetype minspace FC_MINSPACE Bool Eliminate leading from line spacing charset FC_CHARSET CharSet Unicode chars encoded by the font lang FC_LANG String List of RFC-3066-style languages this font supports fontversion FC_FONTVERSION Int From 'head' table |
C code can check the fontconfig version number with the numerical
preprocessor constants FC_MAJOR
, FC_MINOR
, and
FC_REVISION
, or use the combined constant FC_VERSION
, defined
as FC_MAJOR*10000 + FC_MINOR*100 + FC_REVISION
.
The cache version is given by FC_CACHE_VERSION
, and is a string, not
an integer. This is normally appended to the end of the cache file name, so
multiple versions of fontconfig can peacefully co-exist. The cache file
names are defined as FC_DIR_CACHE_FILE
and FC_USER_CACHE_FILE
.
The Boolean constants are FcFalse
(0) and FcTrue
(1).
Properties used to control the rasterizer, their preprocessor constants, and their types, include:
charwidth FC_CHAR_WIDTH Int charheight FC_CHAR_HEIGHT Int matrix FC_MATRIX FcMatrix |
Preprocessor constants are defined for common standard font weights. All are Ints.
FC_WEIGHT_LIGHT 0 FC_WEIGHT_MEDIUM 100 FC_WEIGHT_DEMIBOLD 180 FC_WEIGHT_BOLD 200 FC_WEIGHT_BLACK 210 |
Preprocessor constants are defined for common standard slants. All are Ints.
FC_SLANT_ROMAN 0 FC_SLANT_ITALIC 100 FC_SLANT_OBLIQUE 110 |
Preprocessor constants are defined for the three spacing types. All are Ints, but should be treated as symbolic constants.
FC_PROPORTIONAL 0 FC_MONO 100 FC_CHARCELL 110 |
Preprocessor constants are defined for the subpixel orders. All are Ints, but should be treated as symbolic constants.
FC_RGBA_UNKNOWN 0 FC_RGBA_RGB 1 FC_RGBA_BGR 2 FC_RGBA_VRGB 3 FC_RGBA_VBGR 4 FC_RGBA_NONE 5 |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
typedef struct _FcMatrix { double xx, xy, yx, yy; } FcMatrix; |
typedef struct _FcValue { FcType type; union { const FcChar8 *s; int i; FcBool b; double d; const FcMatrix *m; const FcCharSet *c; void *f; const FcPattern *p; const FcLangSet *l; } u; } FcValue; |
type Union member Datatype FcTypeVoid (none) (none) FcTypeInteger i int FcTypeDouble d double FcTypeString s TcChar8 * FcTypeBool b b FcTypeMatrix m FcMatrix * FcTypeCharSet c FcCharSet * FcTypeFTFace f void * p FcPattern * FcTypeLangSet l FcLangSet * |
typedef struct _FcFontSet { int nfont; int sfont; FcPattern **fonts; } FcFontSet; |
An FcFontSet contains a list of FcPatterns. Internally fontconfig uses this data structure to hold sets of fonts. Externally, fontconfig returns the results of listing fonts in this format. 'nfont' holds the number of patterns in the 'fonts' array; 'sfont' is used to indicate the size of that array.
typedef struct _FcObjectSet { int nobject; int sobject; const char **objects; } FcObjectSet; |
typedef struct _FcObjectType { const char *object; FcType type; } FcObjectType; |
typedef struct _FcConstant { const FcChar8 *name; const char *object; int value; } FcConstant; |
Result code Meaning FcResultMatch Object exists with the specified ID FcResultNoMatch Object doesn't exist at all FcResultTypeMismatch Object exists, but the type doesn't match FcResultNoId Object exists, but has fewer values than specified |
FcMatchPattern
and FcMatchFont
.
FcLangEqual
, FcLangDifferentCountry
,
and FcLangDifferentLang
. Presumably FcLangDifferentLang
implies FcLangDifferentCountry
.
FcSetSystem
and FcSetApplication
.
FcEndianBig
and FcEndianLittle
.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
FcMatrix structures hold an affine transformation in matrix form.
#define FcMatrixInit(m) ((m)->xx = (m)->yy = 1, (m)->xy = (m)->yx = 0) |
Allocates a new FcMatrix and copies 'mat' into it.
Returns FcTrue if 'mat1' and 'mat2' are equal, else FcFalse.
Multiplies 'a' and 'b' together, placing the result in 'result'. 'result' may refer to the same matrix as either 'a' or 'b'.
If 'c' is cos(angle) and 's' is sin(angle), FcMatrixRotate rotates the matrix by 'angle'.
Scales 'm' by 'sx' in the horizontal dimension and 'sy' in the vertical dimension.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcCharSet is a boolean array indicating a set of unicode chars. Those associated with a font are marked constant and cannot be edited. FcCharSets may be reference counted internally to reduce memory consumption; this may be visible to applications as the result of FcCharSetCopy may return its argument, and that CharSet may remain unmodifiable.
When represented as a string, an FcCharSet is not a pure bitmap; octet values are limited such that FcCharSet objects, when printed, are valid ASCII characters.
Creates an empty FcCharSet object.
Frees an FcCharSet object.
Adds a single unicode char to the set, returning FcFalse on failure, either as a result of a constant set or from running out of memory.
Makes a copy of 'src'; note that this may not actually do anything more than increment the reference count on 'src'.
Returns whether 'a' and 'b' contain the same set of unicode chars.
Returns a set including only those chars found in both 'a' and 'b'.
Returns a set including only those chars found in either 'a' or 'b'.
Returns a set including only those chars found in 'a' but not 'b'.
Returns whether 'fcs' contains the char 'ucs4'.
Returns the total number of unicode chars in 'a'.
Returns the number of chars that are in both 'a' and 'b'.
Returns the number of chars that are in 'a' but not in 'b'.
Returns whether 'a' is a subset of 'b'.
Builds an array of bits marking the first page of Unicode coverage of 'a'. Returns the base of the array. 'next' contains the next page in the font.
Builds an array of bits marking the Unicode coverage of 'a' for page '*next'. Returns the base of the array. 'next' contains the next page in the font.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
FcValue is a structure containing a type tag and a union of all possible data types. The tag is an enum of type FcType and is intended to provide a measure of run-time typechecking, although that depends on careful programming.
Frees any memory referenced by `v'. Values of type FcTypeString, FcTypeMatrix and FcTypeCharSet reference memory, the other types do not.
Returns a copy of `v' duplicating any object referenced by it so that `v' may be safely destroyed without harming the new value.
Prints an easily readable version of the value to stdout. There is no provision for reparsing data in this format, it's just for diagnostics and debugging.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcPattern is an opaque type that holds both patterns to match against the available fonts, as well as the information about each font.
Creates a pattern with no properties; used to build patterns from scratch.
Destroys a pattern, in the process destroying all related values.
Returns whether 'pa' and 'pb' are exactly alike.
Returns whether 'pa' and 'pb' have exactly the same values for all of the objects in 'os'.
Returns a 32-bit number which is the same for any two patterns which are exactly alike.
Adds a single value to the list of values associated with the property named `object'. If `append' is FcTrue, the value is added at the end of any existing list, otherwise it is inserted at the begining. `value' is saved (with FcValueSave) when inserted into the pattern so that the library retains no reference to any application-supplied data structure.
FcPatternAddWeak is essentially the same as FcPatternAdd except that any values added to the list have binding 'weak' instead of 'strong'.
These are all convenience functions that insert objects of the specified type into the pattern. Use these in preference to FcPatternAdd as they will provide compile-time typechecking. These all append values to any existing list of values.
Returns in `v' the `id'th value associated with the property `object'. The value returned is not a copy, but rather refers to the data stored within the pattern directly. Applications must not free this value.
These are convenience functions that call FcPatternGet and verify that the returned data is of the expected type. They return FcResultTypeMismatch if this is not the case. Note that these (like FcPatternGet) do not make a copy of any data structure referenced by the return value. Use these in preference to FcPatternGet to provide compile-time typechecking.
Builds a pattern using a list of objects, types and values. Each value to be entered in the pattern is specified with three arguments:
The argument list is terminated by a null object name, no object type nor value need be passed for this. The values are added to `pattern', if `pattern' is null, a new pattern is created. In either case, the pattern is returned. Example:
pattern = FcPatternBuild (0, FC_FAMILY, FtTypeString, "Times", (char *) 0); |
FcPatternVaBuild is used when the arguments are already in the form of a varargs value.
Deletes all values associated with the property `object', returning whether the property existed or not.
Prints an easily readable version of the pattern to stdout. There is no provision for reparsing data in this format, it's just for diagnostics and debugging.
Supplies default values for underspecified font patterns:
Converts 'name' from the standard text format described above into a pattern.
Converts the given pattern into the standard text format described above. The return value is not static, but instead refers to newly allocated memory which should be freed by the caller.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcFontSet simply holds a list of patterns; these are used to return the results of listing available fonts.
Creates an empty font set.
Destroys a font set. Note that this destroys any referenced patterns as well.
Adds a pattern to a font set. Note that the pattern is not copied before being inserted into the set.
Prints an easily readable version of the font set to stdout. There is no provision for reparsing data in this format, it's just for diagnostics and debugging.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcObjectSet holds a list of pattern property names; it is used to indicate which properties are to be returned in the patterns from FcFontList.
Creates an empty set.
Adds a property name to the set.
Destroys an object set.
These build an object set from a null-terminated list of property names.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Provides for application-specified font name object types so that new pattern elements can be generated from font names.
Register 'ntype' new object types.
Unregister 'ntype' object types.
Return the object type for the pattern element named 'object'.
FcConstant
Provides for application-specified symbolic constants for font names.
Register 'nconsts' new symbolic constants.
Unregister 'nconsts' symbolic constants.
Return the FcConstant structure related to symbolic constant 'string'.
Returns whether a symbolic constant with name 'string' is registered, placing the value of the constant in 'result' if present.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcLangSet
holds a set of RFC 3066 language tags, 2.6 LANG Tags.
This module provides functions to determine whether a given language is
fully supported by a font. Partial support can be determined using the
font's character set, 3.2.2 FcCharSet.
Create an empty FcLangSet
.
Destroy a FcLangSet
, freeing any associated storage.
Copy ls to a newly allocated FcLangSet
.
Add lang to FcLangSet
ls.
Check whether lang is a member of FcLangSet
ls. Note that
the return value is a FcLangResult
, not a Boolean.
#### Document me.
Check whether the FcLangSet
s lsa and lsb contain the same
members.
Return a hash value; two FcLangSet
s which hash to different values
cannot contain the same members.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcBlanks object holds a list of Unicode chars which are expected to be blank when drawn. When scanning new fonts, any glyphs which are empty and not in this list will be assumed to be broken and not placed in the FcCharSet associated with the font. This provides a significantly more accurate CharSet for applications.
Creates an empty FcBlanks object.
Destroys an FcBlanks object, freeing any associated memory.
Adds a single character to an FcBlanks object, returning FcFalse if this process ran out of memory.
Returns whether the specified FcBlanks object contains the indicated Unicode value.
The site or user may specify substitutions for certain font patterns, for convenience or to get more accurate results for the local installation or preferences. These functions execute the substitution based on a specified configuration.
Performs the sequence of pattern modification operations, if 'kind' is FcMatchPattern, then those tagged as pattern operations are applied, else if 'kind' is FcMatchFont, those tagged as font operations are applied and p_pat is used for <test> elements with target=pattern.
Calls FcConfigSubstituteWithPat setting p_pat to NULL.
The following functions return fonts that match a certain pattern.
FcFontRenderPrepare
and FcFontMatch
always return a single
best match. FcFontList
returns the list of fonts that match a a
given pattern on a certain set of properties. FcFontSort
returns
the entire list of fonts, sorted in order of match quality, possibly
filtering out fonts that do not provide additional characters beyond
those provided by preferred fonts.
Creates a new pattern consisting of elements of 'font' not appearing in 'pat', elements of 'pat' not appearing in 'font' and the best matching value from 'pat' for elements appearing in both. The result is passed to FcConfigSubstitute with 'kind' FcMatchFont and then returned.
Returns the font in 'config' most close matching 'p'. This function should be called only after FcConfigSubstitute and FcDefaultSubstitute have been called for 'p'; otherwise the results will not be correct.
Selects fonts matching 'p', creates patterns containing only the objects in 'os' from those fonts, and returns the set of unique such patterns.
The FcFontSet returned by FcFontList is destroyed by calling FcFontSetDestroy.
Returns the list of all fonts sorted by closeness to 'p'. If 'trim' is FcTrue, elements in the list which don't include Unicode coverage not provided by earlier elements in the list are elided. The union of Unicode coverage of all of the fonts is returned in 'csp', if 'csp' is not NULL. This function should be called only after FcConfigSubstitute and FcDefaultSubstitute have been called for 'p'; otherwise the results will not be correct.
The returned FcFontSet references FcPattern structures which may be shared by the return value from multiple FcFontSort calls, applications must not modify these patterns. Instead, they should be passed, along with 'p' to FcFontRenderPrepare which combines them into a complete pattern.
The FcFontSet returned by FcFontSort is destroyed by calling FcFontSetDestroy.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
An FcConfig object holds the internal representation of a configuration. There is a default configuration which applications may use by passing 0 to any function using the data within an FcConfig.
Creates an empty configuration.
Destroys a configuration and any data associated with it. Note that calling this function with the return value from FcConfigGetCurrent will place the library in an indeterminate state.
Sets the current default configuration to 'config'. Implicitly calls FcConfigBuildFonts if necessary, returning FcFalse if that call fails.
Returns the current default configuration.
Checks all of the files related to 'config' and returns whether the in-memory version is in sync with the disk version.
Builds the set of available fonts for the given configuration. Note that any changes to the configuration after this call have indeterminate effects. Returns FcFalse if this operation runs out of memory.
Returns the list of font directories specified in the configuration files for 'config'. Does not include any subdirectories.
Returns the list of font directories in 'config'. This includes the configured font directories along with any directories below those in the filesystem.
Returns the list of known configuration files used to generate 'config'. Note that this will not include any configuration done with FcConfigParse.
Returns the name of the file used to store per-user font information.
Returns one of the two sets of fonts from the configuration as specified by 'set'.
Returns the FcBlanks object associated with the given configuration, if no blanks were present in the configuration, this function will return 0.
Returns the interval between automatic checks of the configuration (in seconds) specified in 'config'. The configuration is checked during a call to FcFontList when this interval has passed since the last check.
Sets the rescan interval; returns FcFalse if an error occurred.
Adds an application-specific font to the configuration.
Scans the specified directory for fonts, adding each one found to the application-specific set of fonts.
Clears the set of application-specific fonts.
These functions provide some control over how the default configuration of the library is initialized. (This configuration is normally implicitly initialized.)
Given the specified external entity name, return the associated filename. This provides applications a way to convert various configuration file references into filename form.
A null or empty 'name' indicates that the default configuration file should be used; which file this references can be overridden with the FC_CONFIG_FILE environment variable. Next, if the name starts with '~', it refers to a file in the current users home directory. Otherwise if the name doesn't start with '/', it refers to a file in the default configuration directory; the built-in default directory can be overridden with the FC_CONFIG_DIR environment variable.
Loads the default configuration file and returns the resulting configuration. Does not load any font information.
Loads the default configuration file and builds information about the available fonts. Returns the resulting configuration.
Loads the default configuration file and the fonts referenced therein and sets the default configuration to that result. Returns whether this process succeeded or not. If the default configuration has already been loaded, this routine does nothing and returns FcTrue.
Returns the version number of the library.
Forces the default configuration file to be reloaded and resets the default configuration.
Checks the rescan interval in the default configuration, checking the configuration if the interval has passed and reloading the configuration when any changes are detected.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
These functions provide a safe way to update config files, allowing ongoing reading of the old config file while locked for writing and ensuring that a consistent and complete version of the config file is always available.
Creates a data structure containing data needed to control access to 'file'. Writing is done to a separate file. Once that file is complete, the original configuration file is atomically replaced so that reading processes always see a consistent and complete file without the need to lock for reading.
Attempts to lock the file referenced by 'atomic'. Returns FcFalse if the file is locked by another process, else returns FcTrue and leaves the file locked.
Returns the filename for writing a new version of the file referenced by 'atomic'.
Returns the file refernced by 'atomic'.
Replaces the original file referenced by 'atomic' with the new file.
Deletes the new file.
Unlocks the file.
Destroys 'atomic'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <fontconfig/fcfreetype.h> |
While the fontconfig library doesn't insist that FreeType be used as the rasterization mechanism for fonts, it does provide some convenience functions.
Maps a Unicode char to a glyph index. This function uses information from several possible underlying encoding tables to work around broken fonts. As a result, this function isn't designed to be used in performance sensitive areas; results from this function are intended to be cached by higher level functions.
FreeType face and returns the set of encoded Unicode chars. This scans several encoding tables to build as complete a list as possible. If 'blanks' is not 0, the glyphs in the font are examined and any blank glyphs not in 'blanks' are not placed in the returned FcCharSet.
Constructs a pattern representing the 'id'th font in 'file'. The number of fonts in 'file' is returned in 'count'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Walks the configuration in 'file' and constructs the internal representation in 'config'. Any include files referenced from within 'file' will be loaded with FcConfigLoad and also parsed. If 'complain' is FcFalse, no warning will be displayed if 'file' does not exist.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Scans a single file and adds all fonts found to 'set'. If 'force' is FcTrue, then the file is scanned even if associated information is found in 'cache'. If 'file' is a directory, it is added to 'dirs'.
Scans an entire directory and adds all fonts found to 'set'. If 'force' is FcTrue, then the directory and all files within it are scanned even if information is present in the per-directory cache file or 'cache'. Any subdirectories found are added to 'dirs'.
Creates the per-directory cache file for 'dir' and populates it with the fonts in 'set' and subdirectories in 'dirs'.
Returns FcTrue if 'cache_file' is no older than the directory containing it, else FcFalse.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
A data structure for enumerating strings, used to list directories while scanning the configuration as directories are added while scanning.
Create an empty set.
Returns whether 's' is a member of 'set'.
Adds a copy of 's' to 'set'.
Adds a copy of 's' to 'set', The copy is created with FcStrCopyFilename so that leading '~' values are replaced with the value of the HOME environment variable.
Removes 's' from 'set', returning FcTrue if 's' was a member else FcFalse.
Destroys 'set'.
Creates an enumerator to list the strings in 'set'.
Returns the next string in 'set'.
Destroys the enumerator 'list'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Converts the next Unicode char from 'src' into 'dst' and returns the number of bytes containing the char. 'src' must be at least 'len' bytes long.
Converts the Unicode char from 'src' into 'dst' and returns the number of bytes needed to encode the char.
Counts the number of Unicode chars in 'len' bytes of 'src'. Places that count in 'nchar'. 'wchar' contains 1, 2 or 4 depending on the number of bytes needed to hold the largest unicode char counted. The return value indicates whether 'src' is a well-formed UTF8 string.
Converts the next Unicode char from 'src' into 'dst' and returns the number of bytes containing the char. 'src' must be at least 'len' bytes long. Bytes of 'src' are combined into 16-bit units according to 'endian'.
Counts the number of Unicode chars in 'len' bytes of 'src'. Bytes of 'src' are combined into 16-bit units according to 'endian'. Places that count in 'nchar'. 'wchar' contains 1, 2 or 4 depending on the number of bytes needed to hold the largest unicode char counted. The return value indicates whether 'string' is a well-formed UTF16 string.
Allocates memory, copies 's' and returns the resulting buffer. Yes, this is 'strdup', but that function isn't available on every platform.
Just like FcStrCopy except that it converts any leading '~' characters in 's' to the value of the HOME environment variable.
Returns the usual <0, 0, >0 result of comparing 's1' and 's2'. This test is case-insensitive in the ASCII range and will operate properly with UTF8 encoded strings, although it does not check for well formed strings.
Returns the directory containing 'file'.
Returns the filename of 'file' stripped of any leading directory names.
[ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This document was generated by XEmacs shared group account on December, 19 2009
using texi2html 1.65.