PDFium Component Docs

CreateAttachment Metoda

Ten wpis API zachowuje identyfikatory, sygnatury, bloki kodu i terminy PDF w oryginalnej postaci.
Komponent: TPdf  ·  Moduł: PDFium
Adds a new embedded file (attachment) at the document level.

Składnia

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

Opis

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

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

All edits to the current page are buffered in PDFium's in-memory representation. Call UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Uwagi

Przykład

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;

Zobacz też

Attachment, AttachmentCount, DeleteAttachment