-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add svg picture #651
Comments
I don't believe Word supports SVG natively. What I believe it does is translate the SVG to EMF (Windows Meta File/Extended Meta File) format and embed that. Since EMF is a vector format, it looks just like the SVG. The problem is that there is no SVG to EMF translator available in Python, at least the last time I looked. So this functionality (which would also be desirable for |
Hi @scanny thanks for your quick answer. I'm working in MS Word 2016, as you surely know you can add a svg picture. I have unzipped the Word document to see how they manipulate this kind of files, then i realize that the xml drawing node is very similar for a svg/png. and in the media folder the svg is saved as it without changes, and all the references in the relationship file are to the svg. So (and this is my supposition) it is technically possible give support to this without convertions. If i can help you in anything let me know. |
I'm using Office 365 and I'm sure that Word supports svg format. Encountering the same issue, hope it can be fixed soon. |
Is this a duplicate of #505 ? |
And of #351 |
It would be really awesome if this could be done. Word (and other Office applications) now support SVG natively (they're now imported as editable vector images). |
Would love to see this feature as well. |
See issues python-openxml#351, python-openxml#651, python-openxml#659. (cherry picked from commit 8f54818)
Agree that I'd like to see this feature. I am deploying code that uses this library, so it is difficult for us to use a branch, Would love to see #1343 approved/merged. |
Hi guys! Thanks for your great work! It seems that word has been providing support for svg for a couple of years now. I have tried adding an svg file using add_image but I get the following error message:
I was wondering if you were planning to add support to svgs in the near future. I also tried adding the svg by manipulating the xmls, but I could not make it work either. It was a little too complicated for me. Thanks again!!
The text was updated successfully, but these errors were encountered: