From 87eb26bc3f01e98c948205eca6ff302903cc5b3e Mon Sep 17 00:00:00 2001
From: Sashi20
Date: Tue, 9 Feb 2021 12:33:49 +0530
Subject: Add certificate forms
---
pdf/fpdf/doc/addfont.htm | 55 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
create mode 100755 pdf/fpdf/doc/addfont.htm
(limited to 'pdf/fpdf/doc/addfont.htm')
diff --git a/pdf/fpdf/doc/addfont.htm b/pdf/fpdf/doc/addfont.htm
new file mode 100755
index 0000000..90dc361
--- /dev/null
+++ b/pdf/fpdf/doc/addfont.htm
@@ -0,0 +1,55 @@
+
+
+
+
+AddFont
+
+
+
+
AddFont
+AddFont(string family [, string style [, string file]])
+
Description
+Imports a TrueType, OpenType or Type1 font and makes it available. It is necessary to generate a font
+definition file first with the MakeFont utility.
+
+The definition file (and the font file itself when embedding) must be present in the font directory.
+If it is not found, the error "Could not include font definition file" is raised.
+
Parameters
+
+
family
+
+Font family. The name can be chosen arbitrarily. If it is a standard family name, it will
+override the corresponding font.
+
+
style
+
+Font style. Possible values are (case insensitive):
+
+
empty string: regular
+
B: bold
+
I: italic
+
BI or IB: bold italic
+
+The default value is regular.
+
+
file
+
+The font definition file.
+
+By default, the name is built from the family and style, in lower case with no space.
+