Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why does using ConvertDocument not directly set pageSetup, but require secondary processing of the page #12

Open
Sunny-UU opened this issue Apr 7, 2023 · 0 comments

Comments

@Sunny-UU
Copy link

Sunny-UU commented Apr 7, 2023

const wordsApi = new WordsApi(clientId, secret);
const document = Readable.from(content)

const request = new ConvertDocumentRequest({
  format: "docx",
  document,
});

//first processing of convertDocument
const word = await wordsApi.convertDocument(request)

const wordBuf = Readable.from(word.body)

const requestPageSetup = new PageSetup({
  paperSize: PageSetup.PaperSizeEnum.A4,
  orientation: PageSetup.OrientationEnum.Landscape
})

//secondary processing of the page
const updateRequest = new UpdateSectionPageSetupOnlineRequest({
  document: wordBuf,
  sectionIndex: 0,
  pageSetup: requestPageSetup
});

const wordsResponse = await wordsApi.updateSectionPageSetupOnline(updateRequest)

fs.writeFile("a4.docx", wordsResponse.body.document.values().next().value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant