使用 monodroid 创建或填充 pdf
我正在寻找使用 monodroid 创建 pdf 文件的解决方案。它也可能是一个 pdf 表格,我可以在其中填写内容。我尝试了不同的库,例如 pdfsharp_on_mono 或 itextsharp,但它不起作用。创建一个新的空 pdf 文件没有问题。但当我尝试填写内容时,总是出现错误。
我的目标是拥有一个 PDF 文件,稍后应通过 xml 文件填充该文件。目前,如果我能创建一个 pdf 并在其中“写”一些东西,我会很高兴。 有谁提示,我怎样才能实现它?我真的是 monodroid 中的菜鸟。
如果您需要代码或错误消息,请直接说明。我尝试过不同的解决方案。 干杯 安娜
PS:抱歉我的英语不好。
I'm looking for a solution for creating a pdf-file with monodroid. It might be also a pdf-form in which I would fill in the content. I tried different librarys like pdfsharp_on_mono or itextsharp, but it doesn't work. Creating a new empty pdf-file is no problem. But when I try to fill in content, there are always errors.
My goal is to have a PDF-file, which at a later time should be filled through a xml-file. At the moment I would be happy if I just could create a pdf and "write" something in it.
Has anyone a hint, how I can realize it? I'm a really noob in monodroid.
If you need code or error messages, just say. I have tried different solutions.
cheers
anna
ps: sorry for my bad english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何在 Android 应用程序中创建 PDF?
您可以编写 java 类这将使用现有的 java 解决方案完成 pdf 的所有工作,然后使用 JNIEnv 为其创建代理类并在托管代码中使用它。
How to create PDFs in an Android app?
You can write java class that will do all job with pdf using existing solutions for java, and then using JNIEnv create proxy class for it and use it in managed code.
使用 iText 库,我们可以在 Android 应用程序中创建 pdf 文件。
Using iText library we can create pdf file in android application.