Документация PDFiumPas

CreateAttachment Метод

Эта запись API сохраняет идентификаторы, сигнатуры, блоки кода и термины PDF в исходном виде.
Компонент: TPdf  ·  Модуль: PDFium
Adds a new embedded file (attachment) at the document level.

Синтаксис

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

Описание

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

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

Все изменения текущей страницы буферизуются во внутреннем представлении PDFium в памяти. Вызовите UpdatePage, чтобы обновить кэш отрисовки, и SaveToFile, чтобы сохранить изменения

Примечания

Пример

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;

См. также

Attachment, AttachmentCount, DeleteAttachment