downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

PDF_load_iccprofile> <PDF_load_3ddata
[edit] Last updated: Fri, 26 Apr 2013

view this page in

PDF_load_font

(PECL pdflib >= 2.0.0)

PDF_load_fontSearch 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.



PDF_load_iccprofile> <PDF_load_3ddata
[edit] Last updated: Fri, 26 Apr 2013
 
add a note add a note User Contributed Notes PDF_load_font - [3 notes]
up
0
james dot ferguson at doesnt dot share dot email dot com
5 years ago
In PDFLib 5 'optlist' allows the following possible settings:

embedding=true
subsetting=true
subsetlimit=50
kerning=false
up
0
seufert at gmail dot com
6 years ago
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.
up
-1
james dot ferguson at doesnt dot share dot email dot com
5 years ago
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/

 
show source | credits | stats | sitemap | contact | advertising | mirror sites