diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-10-23 10:49:18 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-10-23 10:49:18 +0000 |
commit | 6a12c6cb256c7054c656c657bd056be4a32b030b (patch) | |
tree | 349167447eea032cba2fcac8db994cb6c9991400 /poi-scratchpad/src | |
parent | 22bac58465b5187609a58a9eec0b5e7f537a1485 (diff) | |
download | poi-6a12c6cb256c7054c656c657bd056be4a32b030b.tar.gz poi-6a12c6cb256c7054c656c657bd056be4a32b030b.zip |
[bug-65650] use image/x-pict mime type
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894507 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-scratchpad/src')
-rw-r--r-- | poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/PictureType.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/PictureType.java b/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/PictureType.java index e1d5753f7d..88e7088bf0 100644 --- a/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/PictureType.java +++ b/poi-scratchpad/src/main/java/org/apache/poi/hwpf/usermodel/PictureType.java @@ -29,7 +29,7 @@ public enum PictureType JPEG( "image/jpeg", "jpg", new byte[][] { { (byte) 0xFF, (byte) 0xD8 } } ), - PICT( "image/pict", ".pict", new byte[0][] ), + PICT( "image/x-pict", ".pict", new byte[0][] ), PNG( "image/png", "png", new byte[][] { { (byte) 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A } } ), |