We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We can unzip a docx to get /word/charts/chart1.xml, etc. Is there a known method to convert these to SVG?
/word/charts/chart1.xml
The text was updated successfully, but these errors were encountered:
Hm, the image in the example doc is actually a PNG:
docx_fs <- system.file("examples/simple.docx", package = "wordup") temp <- tempdir() utils::unzip(zipfile = docx_fs, exdir = temp) list.files(file.path(temp, "word", "media")) ## [1] "image1.png"
Perhaps add a more realistic chart example into the example docx (i.e. a chart produced in Excel and copied over). That would be a better simulation.
Sorry, something went wrong.
No branches or pull requests
We can unzip a docx to get
/word/charts/chart1.xml
, etc. Is there a known method to convert these to SVG?The text was updated successfully, but these errors were encountered: