|
Shows image at specified coordinates.
Delphi 구문:
procedure ShowImage ( ImageIndex: Integer; X, Y, W, H, Angle: Extended );
C++ 구문:
void __fastcall ShowImage ( int ImageIndex, Extended x, Extended y, Extended w, Extended h, Extended Angle );
Description:
Index(THotPDF.AddImage가 반환한 ImageIndex), coordinate(X, Y), width 및 height(W, H), angle(Angle)로 지정한 image를 paint하려면 ShowImage를 호출하십시오
Code Example
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 file will be shown automatically
HPDF.FileName := '\ImageDemo.pdf'; // Set PDF filename
HPDF.BeginDoc; // Create PDF file
Index := HPDF.AddImage( '\Image.jpg', icJpeg ); // Add image to the document
HPDF.CurrentPage.ShowImage( Index, 10, 10, 390, 300, 0 ); // Show image with sizes 390 x 300
HPDF.EndDoc; // Close PDF file
finally
HPDF.Free;
end;
end.
|