|
program NotEmbeddedFontsExample; {$APPTYPE CONSOLE} uses SysUtils, Graphics, Classes, HPDFDoc;
var HPDF: THotPDF;
begin HPDF:= THotPDF.Create( nil ); try HPDF.AutoLaunch := true; // Файл PDF буде показано автоматично HPDF.FileName := 'NotEmbeddedFontsExample.pdf'; HPDF.FontEmbedding := true; // Embed fonts by default HPDF.NotEmbeddedFonts.Add( 'Arial' ); // Arial will not be embedded HPDF.BeginDoc; // Створення файлу PDF HPDF.CurrentPage.SetFont( 'Arial', [], 12 ); // This font stays external HPDF.CurrentPage.TextOut(10, 10, 0, 'Arial is excluded from embedding'); // Виведення тексту HPDF.EndDoc; // Закриття файлу PDF finally HPDF.Free; end; end. |