diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-12-16 16:51:08 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-12-16 16:51:08 +0000 |
commit | abe662db86034a0676bc0160e0878fbecefef488 (patch) | |
tree | ae844a12de4aafedf5dd44c625c0b1703f668de1 /src/java | |
parent | cda119e3b8d47bff4ff0b02ccb021d27e31b1aab (diff) | |
parent | a308c6467e7efa4ed128ce6424cbf34e02ae59ec (diff) | |
download | poi-hemf.tar.gz poi-hemf.zip |
merge trunkhemf
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/hemf@1849036 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/org/apache/poi/sl/usermodel/PictureData.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/sl/usermodel/PictureData.java b/src/java/org/apache/poi/sl/usermodel/PictureData.java index 60e6266b7e..0285dd5845 100644 --- a/src/java/org/apache/poi/sl/usermodel/PictureData.java +++ b/src/java/org/apache/poi/sl/usermodel/PictureData.java @@ -46,7 +46,10 @@ public interface PictureData { /** WordPerfect graphics (.wpg) */ WPG(-1,12,"image/x-wpg",".wpg"), /** Microsoft Windows Media Photo image (.wdp) */ - WDP(-1,13,"image/vnd.ms-photo",".wdp"); + WDP(-1,13,"image/vnd.ms-photo",".wdp"), + /** Scalable vector graphics (.svg) - supported by Office 2016 and higher */ + SVG(-1, -1, "image/svg+xml", ".svg") + ; public final int nativeId, ooxmlId; public final String contentType,extension; |