PDFium Component Docs

CreateAttachment Methode

Dieser API-Eintrag behält Bezeichner, Signaturen, Codeblöcke und PDF-Begriffe in ihrer Originalform.
Komponente: TPdf  ·  Unit: PDFium
Adds a new embedded file (attachment) at the document level.

Syntax

function CreateAttachment(const Name: WString; const Data: TBytes; const MimeType: WString = ''): Integer

Beschreibung

Adds a new embedded file (attachment) at the document level.

Returns the attachment index; use AttachmentName/AttachmentType to enumerate.

Alle Änderungen an der aktuellen Seite werden in der speicherinternen Darstellung von PDFium gepuffert. Rufen Sie UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Hinweise

Beispiel

begin
  if Pdf1.Active then
  begin
    Pdf1.MoveTo(100, 100);
    Pdf1.LineTo(200, 150);
    Pdf1.LineTo(200, 200);
    Pdf1.ClosePath;
    Pdf1.AddPath(clRed, 1.5, clYellow, fmWinding);
    Pdf1.UpdatePage;
  end;
end;

Siehe auch

Attachment, AttachmentCount, DeleteAttachment