I need a library that will allow reading WPD files in .NET environment.
So far I've only found libwpd.
That seems to be a native library and no documentation is available for using it with .NET Interop.
Another solution would be using a command-line converter to another, more common format (e.g. RTF, HTML or ODT), but I can't find such converter either.
Can anyone help?
After struggling to do just this for a long time using the awful and incomplete PerfectScript interface, I developed a custom reader to parse wpd files into most of the functions and text found in a wpd file. WP_Reader is a C# library that can be easily used to extract most everything contained in a WordPerfect document.
However, WP_Reader won't do you much good until you study and understand the WP6+ file specification. You still have to write your own custom tokenizer to deconstruct the file into something useful. For a detailed introduction to how the library can be used, visit WPUniverse Forums
No need to have WordPerfect installed.
Licensed under GNU Lesser General Public License.
I know this may seem like self-promotion, but 5 years ago, there was nothing at all that could be used, except try to make libwpd work on .NET. Now, anybody with a semblance of programming skills can extract a wpd document.