program ImageDemo;

{$APPTYPE CONSOLE}

uses

SysUtils,

Graphics,

Classes,

HPDFDoc;

 

var

  I: Integer;

  HPDF: THotPDF;

  Index: Integer;

 

begin

HPDF:= THotPDF.Create( nil );

try

   HPDF.AutoLaunch := true; // קובץ ה-PDF יוצג באופן אוטומטי

   HPDF.FileName := 'ImageDemo.pdf';    

 

   HPDF.BeginDoc; // צור קובץ PDF

 

   Index := HPDF.AddImage( '.\Image.jpg', icJpeg ); // הוסף תמונה למסמך

   HPDF.CurrentPage.ShowImage( Index, 10, 10, 390, 300, 0 ); // הצג תמונה בגדלים 390 x 300

 

   HPDF.EndDoc; // סגור קובץ PDF

finally

     HPDF.Free;

end;

end.