HotPDF Developer Reference
Delphi and C++Builder PDF component help
|
program HelloWorld; {$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 := 'Circle.pdf'; HPDF.BeginDoc; // Create PDF file HPDF.CurrentPage.Circle( 200, 200, 100 ); // Draw circle HPDF.CurrentPage.ClosePathStroke; // and stroke HPDF.EndDoc; // Close PDF file finally HPDF.Free; end; end. |