Actually the full optlist is:
autosubsetting boolean (Default: global parameter)
autocidfont boolean (Default: global parameter)
embedding boolean (Default: false)
fontstyle keyword (Possible keywords are normal, bold, italic, bolditalic. Default: normal)
fontwarning boolean (true - exception, false - error code Default: global parameter)
kerning boolean (Default: false)
monospace integer (Default: absent (metrics from the font will be used))
subsetlimit float (Default: global parameter)
subsetminsize float (Default: global parameter)
subsetting boolean (Default:false)
unicodemap boolean (Default: true)
See the manual at:
http://www.pdflib.com/developer/technical-documentation/manuals/
PDF_load_font
(PECL pdflib >= 2.0.0)
PDF_load_font — Search and prepare font
Description
int PDF_load_font
( resource
$pdfdoc
, string $fontname
, string $encoding
, string $optlist
)Searches for a font and prepares it for later use.
james dot ferguson at doesnt dot share dot email dot com
19-Feb-2008 07:47
james dot ferguson at doesnt dot share dot email dot com
19-Feb-2008 07:23
In PDFLib 5 'optlist' allows the following possible settings:
embedding=true
subsetting=true
subsetlimit=50
kerning=false
seufert at gmail dot com
31-Jul-2006 12:43
This function is used to load a font into memory for later use with PDF_setfont()
This function is the replacement for the depracated PDF_find_font()
And also here is the 'core font' list, for PDF files, these do not need to be embeded:
- Courier
- Courier-Bold
- Courier-Oblique
- Courier-BoldOblique
- Helvetica
- Helvetica-Bold
- Helvetica-Oblique
- Helvetica-BoldOblique
- Times-Roman
- Times-Bold
- Times-Italic
- Times-BoldItalic
- Symbol
- ZapfDingbats
And with encodings i have found its best to use iso8859-1 for english with a $ for currency.
