Word добавляет Ins с JavaScript, para.get Html () уравнениями, преобразованными как изображение - PullRequest
4 голосов
/ 31 января 2020

Я создаю слово addIns, где я хочу получить содержимое слова ms как html с изображениями. para.get Html () вернул html имеет imageтеги для изображений / уравнений, но я не могу получить это изображение.


// Run a batch operation against the Word object model.
Word.run(function(context) {
    // Create a proxy object for the paragraphs collection.
    var paragraphs = context.document.body.paragraphs;

    // Queue a command to load the style property for all of the paragraphs.
    context.load(paragraphs, "style");

    // Synchronize the document state by executing the queued commands,
    // and return a promise to indicate task completion.
    return context.sync().then(function() {
      // Queue a a set of commands to get the HTML of the first paragraph.
      var html = paragraphs.items[0].getHtml();

      // Synchronize the document state by executing the queued commands,
      // and return a promise to indicate task completion.
      return context.sync().then(function() {
        console.log("Paragraph HTML: " + html.value);
        write(html.value)
      });

    });
}).catch(function(error) {
    console.log("Error: " + JSON.stringify(error));
    if (error instanceof OfficeExtension.Error) {
      console.log("Debug info: " + JSON.stringify(error.debugInfo));
    }
});

вернул img тег, подобный этому

Как я могу получить эти изображения в виде base64, который преобразует уравнения в изображения?

Спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...