program StrokeExample;

{$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.Stroke;                                // and stroke

       HPDF.EndDoc;                                                  // Close PDF file

   finally

       HPDF.Free;

   end;

end.