HotPDF Developer Reference
Delphi and C++Builder PDF component help
|
program FontEmbeddingExample; {$APPTYPE CONSOLE} uses SysUtils, Graphics, Classes, HPDFDoc;
var HPDF: THotPDF;
begin HPDF:= THotPDF.Create( nil ); try HPDF.AutoLaunch := true; // PDF file will be shown automatically HPDF.FileName := 'FontEmbeddingExample.pdf'; HPDF.FontEmbedding := true; // Fonts will be embedded HPDF.StandardFontEmulation := false; // Use the actual installed font metrics HPDF.BeginDoc; // Create PDF file HPDF.CurrentPage.SetFont( 'Calibri', [], 12 ); // Select the target font HPDF.CurrentPage.TextOut(10, 10, 0, 'Embedded font output sample'); // Print text HPDF.EndDoc; // Close PDF file finally HPDF.Free; end; end. |