|
program PDFInfo; {$APPTYPE CONSOLE} uses SysUtils, Graphics, Classes, HPDFDoc;
var HPDF: THotPDF;
begin HPDF:= THotPDF.Create(nil); try HPDF.AutoLaunch := true;// PDF-fil vil blive vist automatisk HPDF.ShowInfo := true;// Inkluder oplysninger i dokumentet HPDF.FileName :='Hello world.pdf'; HPDF.Author :='http://www.loslab.com/'; // Indstil oplysninger om forfatter HPDF.Subject :='HotPDF console information demo'; // Indstil dokumentemne HPDF.Title :='Information Demo'; // Indstil dokumenttitel HPDF.BeginDoc;// Opret PDF-fil HPDF.CurrentPage.TextOut(10, 10, 0, 'Information Demo'); // Udskriv tekst HPDF.EndDoc;// Luk PDF-fil finally HPDF.Free; end; end |