使用带有绝对定位框的 Python 或 Java 生成 DOC(和 DOCX)模板

发布于 2025-01-08 20:48:36 字数 300 浏览 0 评论 0原文

对于网络打印,我们需要生成一个 .doc (Microsoft Word 2003+) 兼容的模板/文档,我们需要在文档中放置一些数据(基本上我们需要自动生成地址、电话、联系方式的信头)信息等)。

此处可以使用哪些基于 Python 或 Java 的解决方案来支持 .doc 中文本框的绝对定位(甚至可能通过 .DOCX)。

我们尝试了:XFC(基于FO,不支持绝对定位)并尝试了Aspose Words for Java(也不支持绝对定位)。

金钱并不起主要作用。该解决方案必须有效,并且不能是开源的。

还有更多选择吗?

For a web-to-print we need to generate a .doc (Microsoft Word 2003+) compatible templates/documents where we need to position some data inside the document (basically we need to auto-generated letter heads for address, phone, contact information etc.).

Which Python or Java based solutions can be used here that providing support for absolute positioning of text boxes in .doc (perhaps even through .DOCX).

We tried: XFC (FO-based which does not support absolute positioning) and tried Aspose Words for Java (also no support for absolute positioning).

Money does not play a major role. The solution has to work and it must not be open-source.

Any more options?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小霸王臭丫头 2025-01-15 20:48:36

任何你能用 word 做的事情,你都可以用 word com 对象做。

  1. 安装PythonWin。
  2. 使用“工具->COM浏览器”下的对象浏览器查找您需要的内容。

Anything you can do with word, you can do with the word com object.

  1. Install PythonWin.
  2. Use the object browser under "Tools->COM browser" to find what you need.
欢你一世 2025-01-15 20:48:36

您可以尝试 Docmosis,因为它可以通过模板运行。您可以执行诸如在模板中绝对定位文本框之类的操作,并使用 Docmosis 填充文本框。作为另一种方法,您可能可以将整个页面布局为表格网格 - 它也可能取决于其他组件的布局细节。

You could try Docmosis since it works from a template. You would do something like absolute-position your text box in the template and use Docmosis to put populate the text box. You could probably lay out the entire page as a table grid as another approach - it will likely on the specifics of the layout of the other components as well.

鹿港巷口少年归 2025-01-15 20:48:36

OpenOffice.org 的通用网络对象 (UNO) 允许您生成 .doc、.PDF 以及 OpenOffice 文档。它支持多种编程语言,如:Java、C++、Visual Basic 等。

一些好处是:它免费、开源且独立于平台

。您可以构建文档、电子表格、演示文稿等。
该库允许您创建图形、图表并从头开始或使用模板并填补空白。

为了使用它,您需要包含 OpenOffice 套件附带的一些库。

有用的链接:

OpenOffice.org's Universal Network Objects (UNO), allow you to generate .doc,.PDF, as well as OpenOffice documents. It supports several programming languages like: Java, C++, Visual Basic, etcc..

Some good things is that: its free, open source and plataform-independent

You can build documents, spreadsheets, presentations, etc.
The library allow you to create graph, charts and start from scratch or using a template and fill the gaps..

In order to use it you will need to include some libraries that comes with the OpenOffice suite.

Useful links:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文