PDF Creator Pilot documentation |
Download CHM version of this manual. |
|
![]() ![]() Collapse AllThis method adds a TTF font from a file using the default character set and returns the font name.
|
| BSTR AddTTFFontFromFile2 ( BSTR fontFile ) |
Parameters
fontFile
Path to a font file.
Return value
This method returns the loaded font name. If the font can't be added (when you try to add a commercial font, for example), it returns an empty string.
Remarks
This method can load TTF, OTF, and Type1 fonts.
The return value is the name of the font added and can be used in PDFPAGE_SetActiveFont.
Equivalents in new interface: IPDFDocument4::AddFont, IPDFDocument4::AddFontFromFile, IPDFDocument4::AddBuiltInFont.
Example
Adding a Font from a File
Delphi
[copy to clipboard]
{ PDF object is supposed to be created }
PDF.BeginDoc;
fontName := PDF.AddTTFFontFromFile2('c:\path\to\font.ttf');
PDF.PDFPAGE_SetActiveFont(fontName, False, False, False, False, 14, charsetDEFAULT_CHARSET);
PDF.PDFPAGE_TextOut(100, 100, 0.0, '0123456789');
PDF.EndDoc;
C/C++
[copy to clipboard]
// PDF object is supposed to be created
PDF->BeginDoc();
CString fontName = PDF.AddTTFFontFromFile2("c:\\path\\to\\font.ttf");
PDF.PDFPAGE_SetActiveFont(fontName, FALSE, FALSE, FALSE, FALSE, 14.0, charsetDEFAULT_CHARSET);
PDF.PDFPAGE_TextOut(100, 100, 0.0, "0123456789");
PDF.EndDoc();
C#
[copy to clipboard]
// PDF object is supposed to be created
PDF->BeginDoc();
string fontName = PDF.AddTTFFontFromFile2("c:\\path\\to\\font.ttf");
PDF.PDFPAGE_SetActiveFont(fontName, false, false, false, false, 14.0, TxFontCharset.charsetDEFAULT_CHARSET);
PDF.PDFPAGE_TextOut(100, 100, 0.0, "0123456789");
PDF.EndDoc();
Visual Basic
[copy to clipboard]
' PDF object is supposed to be created
PDF.BeginDoc
fontName = PDF.AddTTFFontFromFile2("c:\path\to\font.ttf")
PDF.PDFPAGE_SetActiveFont fontName, False, False, False, False, 14, charsetDEFAULT_CHARSET
PDF.PDFPAGE_TextOut 100, 100, 0, "0123456789"
PDF.EndDoc
See Also
Reference


