2

Linux サーバーから Visio 図面を作成することはできますか?

つまり、Visio ソフトウェアにアクセスできません。言語は python、php、C ..

4

1 に答える 1

4

Short answer: Yes

There are a couple of options available to you:

1 - Generate VDX or VSDX files. These are XML-based formats that Visio can read. (VSDX is new and can only be read by Visio 2013). If you can generate XML files on Linux then you can create these files. I wrote such a library that can help create VDX files - Look for VisioAutomation.VDX here: http://visioautomation.codeplex.com/ also you could look at http://pkgvisio.codeplex.com/.

2 - Generate VSD. This is a binary format and harder to create. LibreOffice has a library to generate this format. Also the "Aspose.Diagram" can do this but as-far-as-I-know does not work on a Linux server.

于 2013-02-27T06:34:50.750 に答える