我正在开发一个应用程序。在我的应用程序中,我成功地添加了PdfSharp-WP7的引用。现在我想创建一个包含一些图像和文本的新pdf文件并将其保存在本地并且我想在成功创建文件后显示/读取数据。请与一些代码或任何链接共享以开始。
注意:我不是在寻找启动器应用。
提前致谢
答案 0 :(得分: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);