2

我正在开发一个应用程序。在我的应用程序中,我成功地添加了 PdfSharp-WP7 的引用。现在我想创建一个包含一些图像和文本的新 pdf 文件并将其保存在本地并且我想在成功创建文件后显示/读取数据。请分享一些代码或任何链接以开始使用。

注意:我不是在寻找启动器应用程序。

提前致谢

4

1 回答 1

0

根据项目主页上的注释,它是 PDFsharp 的一个端口,您应该在那里查找文档。

hello world smaple 可以在http://www.pdfsharp.net/wiki/HelloWorld-sample.ashx找到,看起来有点像这样:

  // Create a new PDF document
  PdfDocument document = new PdfDocument();
  document.Info.Title = "Created with PDFsharp";

  // Create an empty page
  PdfPage page = document.AddPage();

  // Get an XGraphics object for drawing
  XGraphics gfx = XGraphics.FromPdfPage(page);

  // Create a font
  XFont font = new XFont("Verdana", 20, XFontStyle.BoldItalic);

  // Draw the text
  gfx.DrawString("Hello, World!", font, XBrushes.Black,
    new XRect(0, 0, page.Width, page.Height),
    XStringFormats.Center);

  // Save the document...
  const string filename = "HelloWorld.pdf";
  document.Save(filename);
于 2013-11-13T16:48:10.203 回答