使用Delphi将数据发送到PDF

时间:2011-01-31 11:12:43

标签: delphi automation pdf-generation delphi-2010 delphi-xe

我是否有办法将数据发送到我的PDF文件,(填写字段/空白),手动或由第三方组件,PDF文件具有某些字段,可由用户修改,输入数字。 。复选框等等

如何实现这一目标,如果它需要一些第三方组件,这是最好的,价格是多少?

我们的开发IDE是delphi 2010 / Delphi 2011 XE

谢谢:)

1 个答案:

答案 0 :(得分:2)

我想你希望你的应用程序从用户界面字段创建一些PDF内容。

您可以使用代码中的报告生成器,然后使用PDF engine轻松地从代码执行此操作。

我们建议使用Open Source solution just for doing this,从Delphi 6到XE。

这是一个code extract from one demo,它使用一些用户界面字段作为源(例如edt1.Text或mmo1.Text)创建报告:

procedure TForm1.btn1Click(Sender: TObject);
  (...)
    with TGDIPages.Create(self) do
    try
      // the name of the report is taken from main Window's caption
      Caption := self.Caption;
      // now we add some content to the report
      BeginDoc;
      (...)
      // main content (automaticaly split on next pages)
      NewHalfLine;
      TextAlign := taJustified;
      s := 'This is some big text which must be justified on multiple lines. ';
      DrawText(s+s+s+s);
      NewLine;
      TextAlign := taLeft;
      DrawTitle(edt1.Text,true);
      for i := 1 to 10 do
        DrawText('This is some text '+IntToStr(i));
      NewLine;
      DrawBMP(Bmp,maxInt,50,'Some bitmap in the report');
      AddBookMark('bookmarkname');
      WordWrapLeftCols := true;
      AddColumns([10,20,50]);
      AddColumnHeaders(['#','Two','Three'],true,true);
      for i := 1 to 100 do
        DrawTextAcrossCols([IntToStr(i),'Column '+IntToStr(i),'Some text here. '+s]);
      NewLine;
      DrawBMP(Bmp,maxInt,50,'Some bitmap in the report (twice)');
      DrawTitle('This is your text',false,0,'','bookmarkname');
      DrawText(mmo1.Text);
      EndDoc;
      // set optional PDF export options
      // ExportPDFForceJPEGCompression := 80;
      // ExportPDFEmbeddedTTF := true;
      // ExportPDFUseUniscribe := true;
      // ExportPDFA1 := true;
      // show a preview form, and allow basic actions via the right click menu
      // ShowPreviewForm;
      // export as PDF
      ExportPDF('test.pdf',false);
    finally
      Free;
    end;

还有其他解决方案,但这个是Open Source,您甚至可以在报告中绘制任何内容(使用“标准”TCanvas属性 - 您甚至可以使用PaintTo方法直接绘制任何图形组件),而不是只有专门的报告生成方法,如DrawTitle()或DrawText()。

编辑:

如果您的问题是关于使用表单创建PDF文件,则此库将无效。

您应该使用一些封闭源库,例如VeryPdfQuickPdfGoogle is your friend