Кодеки: Как преобразовать ODT в DOCX?
В этом разделе
SDK может преобразовать ODT-документ в DOCX-документ.
Вот код C#/VB.NET, который показывает, как преобразовать ODT-документ в DOCX-документ:
/// <summary>
/// Converts ODT file to a DOCX file.
/// </summary>
/// <param name="odtFilePath">Path to a source ODT file.</param>
/// <param name="docxFilePath">Path to a result DOCX file.</param>
public static void ConvertOdtToDocx(string odtFilePath, string docxFilePath)
{
Vintasoft.Imaging.Office.OpenXml.OpenXmlDocumentConverter.ConvertOdtToDocx(odtFilePath, docxFilePath);
}
''' <summary>
''' Converts ODT file to a DOCX file.
''' </summary>
''' <param name="odtFilePath">Path to a source ODT file.</param>
''' <param name="docxFilePath">Path to a result DOCX file.</param>
Public Shared Sub ConvertOdtToDocx(odtFilePath As String, docxFilePath As String)
Vintasoft.Imaging.Office.OpenXml.OpenXmlDocumentConverter.ConvertOdtToDocx(odtFilePath, docxFilePath)
End Sub