PDF 函数
在线手册:中文 英文
PHP手册

PDF_load_font

(PECL pdflib >= 2.0.0)

PDF_load_fontSearch and prepare font

说明

int PDF_load_font ( resource $pdfdoc , string $fontname , string $encoding , string $optlist )

Searches for a font and prepares it for later use.


PDF 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Search and prepare font

用户评论:

james dot ferguson at doesnt dot share dot email dot com (19-Feb-2008 10:47)

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/

james dot ferguson at doesnt dot share dot email dot com (19-Feb-2008 10:23)

In PDFLib 5 'optlist' allows the following possible settings:

embedding=true
subsetting=true
subsetlimit=50
kerning=false

seufert at gmail dot com (01-Aug-2006 02: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.