Fonts in mPDF 6.x
mPDF supports Truetype fonts, reading and embedding directly from the .ttf font files. Fonts must follow the Truetype specification and use Unicode mapping to the characters. Truetype collections (.ttc files) and Opentype files (.otf) in Truetype format are also supported.
Easy to add new fonts
- Upload the Truetype font file to the fonts directory (/ttfonts)
- Define the font file details in the configuration file (config_fonts.php)
- Access the font by specifying it in your HTML code as the CSS font-family
- To use the font with specific languages, you need also to edit the configuration file (config_lang2fonts.php) - see the example
Specify custom font directory
You can specify a custom font directory (eg when installing mPDF with composer or when you want to share custom
fonts between instances) by defining _MPDF_TTFONTPATH
constant with the path before initializing mPDF library (ie
requiring mpdf.php file).
define('_MPDF_TTFONTPATH', __DIR__ . '/fonts');
$mpdf = new mPDF();
You may want to copy font files included in the distribution for defaults and font substitutions to work.
Example
You have 2 font files Frutiger-Normal.ttf
and FrutigerObl-Normal.ttf
which you want to be available in mPDF,
and you will refer to them in HTML/CSS as “Frutiger”.
-
Upload the 2 files to the fonts directory (/ttfonts)
-
In the configuration file (config_fonts.php) add this to the array
$this->fontdata
:"frutiger" => array( 'R' => "Frutiger-Normal.ttf", 'I' => "FrutigerObl-Normal.ttf", ),
For fonts which handle complex scripts and/or right-to-left text, see OpenType layout (OTL) for details of setting OTL use and support for kashida e.g.
"frutiger" => array( 'R' => "Frutiger-Normal.ttf", 'I' => "FrutigerObl-Normal.ttf", 'useOTL' => 0xFF, 'useKashida' => 75, ),
If you are not able to edit config_fonts.php from the distribution, just edit
fontdata
property of your mPDF instance:$mpdf = new mPDF(); $mpdf->fontdata["frutiger"] = [ 'R' => "Frutiger-Normal.ttf", 'I' => "FrutigerObl-Normal.ttf", ];
-
In your HTML or CSS code use something like this:
<p style="font-family: frutiger"></p>
-
To use the font with specific languages, you need also to edit the configuration file (config_lang2fonts.php); let us imagine that Frutiger contains a full set of characters needed for the Thai language:
<?php // THAI case "th": $unifont = "frutiger"; break;
This will enable the Frutiger font whenever the lang attribute is set, if the configurable variable
autoLangToFont
is set totrue
:
Full Unicode support
The DejaVu fonts distributed with mPDF contain an extensive set of characters - see Unicode coverage of free fonts for details of these and other open-source fonts.
Complex scripts
Right-to-left languages (Hebrew, Arabic etc.)
Arabic languages and Hebrew are written in a right-to-left direction (RTL). mPDF recognises both Arabic and Hebrew languages and reverses text direction automatically.
ألسّلام عليكم שלום
Arabic languages (but not Hebrew) also change the form of the letter depending on its position in the text e.g. these are the initial, medial, final, and isolated forms of arabic letter ‘ain’:
ع ـع ـعـ عـ
Note: You must enable OpenType layout (OTL) features for a font to correctly display right-to-left scripts.
Indic languages, Lao, Tibetan etc.
Other complex scripts require some processing of characters before display. For example some vowels consist of 2 characters, to be placed before and after the adjacent consonant e.g.
U+0D1C + U+0D4C [vowel AU] = [written together as ജൌ]
ജ + ൌ = ജൌ
Consonant conjuncts are where two adjacent characters are written as a single ‘conjunct’ form e.g.
प + ॡ = पॣ
Note: You must enable OpenType layout (OTL) features for a font to correctly display complex scripts.
Vertical writing
Vertical writing is not supported by mPDF (e.g. Mongolian and Phags-pa) although the individual characters can be displayed using suitable fonts.
Unicode Supplementary Planes
The original Unicode allocated characters between x0000 and xFFFF (65,536 characters). This ‘Basic Multilingual Plane’ supported most characters in common use, including a large number of Unified Chinese-Japanese-Korean characters (CJK). Later the Unicode standard was extended to 16 Planes.
The first plane (plane 0), the Basic Multilingual Plane (BMP), is where most characters have been assigned so far.
Plane 1, the Supplementary Multilingual Plane (SMP), is mostly used for historic scripts such as Linear B, but is also used for musical and mathematical symbols.
Plane 2, the Supplementary Ideographic Plane (SIP), is used for about 40,000 Unified Han (CJK) Ideographs.
mPDF supports fonts containing characters from all Unicode Planes. By choosing the correct font, almost every single character from Unicode 5 can be displayed in a PDF file.
Unicode Supplementary Multilingual Plane (SMP or Plane 1) U+10000 - U+1FFFF
The Unicode Supplementary Multilingual Plane contains ranges such as Gothic text and Egyptian Hieroglyphics. as well as other (mainly) ancient scripts - see Unicode coverage of free fonts for full list.
mPDF uses a different method to embed fonts in the PDF file if they include characters from SMP or SIP, because the
characters cannot be represented by a 4 character hex code 0000-FFFF. This method is less eficient than the default
method, and it can be suppressed by adding the font name to the array BMPonly
in the
config_fonts.php configuration file.
Note that the DejaVu fonts distributed with mPDF do contain a few characters in the SMP plane, but most users will
not require them and by default they are added to the array BMPonly
.
Using CJK fonts in mPDF
Fonts containing CJK characters are large files, typically 10-30MB. Adobe provides a free download of an ‘Asian font pack’ allowing you to create PDF files without including (embedding) the font information in the file. This keeps the file size to a minimum and minimises resource usage on your website generating the PDF file. However, users will have to download the Adobe font packs to read the file, and other PDF software will not display the text correctly.
mPDF allows you to embed subsets of CJK fonts keeping file size down, although there is considerable memory usage to generate these files.
Some CJK fonts are broken up into 2 files because of the size of the files. One freely available font with almost complete coverage of all CJK characters (in both BMP and SIP) is ‘Sun’ available from Alan Wood’s excellent website: http://www.alanwood.net/unicode/fonts-east-asian.html. This comes as 2 files, Sun-ExtA and Sun-ExtB (both about 20MB in size) containing the characters from BMP and SIP respectively.
mPDF allows you to treat these as one font by defining the second file as an SIP-extension of the first in the config_fonts.php configuration file.
This is an example of the entry in the config_fonts.php configuration file:
<?php
$this->fontdata = array(
"sun-exta" => array(
'R' => "Sun-ExtA.ttf",
'sip-ext' => 'sun-extb',
),
"sun-extb" => array(
'R' => "Sun-ExtB.ttf",
),
);
This is a sample of HTML code containing CJK characters in both BMP and SIP - note only the sun-exta font-family needs to be referenced:
<div style="font-family:sun-extA;">
鼂 鼈 鼗 𣈏 𣈥 鼦
鼧 𣈯 𣈱 鼹 齄 𣈲
𣈳 齅 齐 𣈴 𣉖 齓
齚 𣉢 𣊁 齢 齩 𣊉
𣊊
</div>
TrueType Collections
TrueType Collections (.ttc files) contain more than one font. mPDF treats each font separately by defining the
TTCfontID
array in the config_fonts.php configuration file.
This example uses the Windows MingLiU fonts, which consist of 2 files containing 6 fonts (note that mingliub is not a Bold variant):
Font collection file (mingliu.ttc) contains the following fonts:
- MingLiU (mingliu) Regular
- PMingLiU (pmingliu) Regular (Proportional)
- MingLiU_HKSCS (mingliu_hkscs) Regular
Font collection file (mingliub.ttc) contains the following fonts:
- MingLiU-ExtB (mingliu-extb) Regular
- PMingLiU-ExtB (pmingliu-extb) Regular (Proportional)
- MingLiU_HKSCS-ExtB (mingliu_hkscs-extb) Regular
This is the entry in the config_fonts.php configuration file:
<?php
$this->fontdata = array(
"mingliu" => array(
'R' => "mingliu.ttc",
'TTCfontID' => array (
'R' => 1,
),
'sip-ext' => 'mingliu-extb',
),
"pmingliu" => array(
'R' => "mingliu.ttc",
'TTCfontID' => array (
'R' => 2,
),
'sip-ext' => 'pmingliu-extb',
),
"mingliu_hkscs" => array(
'R' => "mingliu.ttc",
'TTCfontID' => array (
'R' => 3,
),
'sip-ext' => 'mingliu_hkscs-extb',
),
"mingliu-extb" => array(
'R' => "mingliub.ttc",
'TTCfontID' => array (
'R' => 1,
),
),
"pmingliu-extb" => array(
'R' => "mingliub.ttc",
'TTCfontID' => array (
'R' => 2,
),
),
"mingliu_hkscs-extb" => array(
'R' => "mingliub.ttc",
'TTCfontID' => array (
'R' => 3,
),
),
...
);
This is an example of HTML code containing CJK characters from both BMP and SIP, and selecting the different fonts:
<div style="font-family:mingliu;">
鼂 鼦 齄 齐 齢 齩
𣊉 𣊊
</div>
<div style="font-family:mingliu_hkscs;">
鼂 鼦 齄 齐 齢 齩
𣊉 𣊊
</div>
<div style="font-family:pmingliu;">
鼂 鼦 齄 齐 齢 齩
𣊉 𣊊
</div>