diff options
author | xuri <xuri.me@gmail.com> | 2022-08-21 01:09:32 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-08-21 01:09:32 +0800 |
commit | ab12307393461e7055f664d296a3a0e686eebb39 (patch) | |
tree | e2f5f2b43feaa7997eccf4471f5ef695af7076fe /xmlDrawing.go | |
parent | cfa2d603ddb0fac50ca1af3fe1d28fe17a65a6f3 (diff) |
This made library allowing insert EMZ and WMZ format image
- Update dependencies module
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index b4fdccc..34c9858 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -142,7 +142,7 @@ const ( ) // supportedImageTypes defined supported image types. -var supportedImageTypes = map[string]string{".gif": ".gif", ".jpg": ".jpeg", ".jpeg": ".jpeg", ".png": ".png", ".tif": ".tiff", ".tiff": ".tiff", ".emf": ".emf", ".wmf": ".wmf"} +var supportedImageTypes = map[string]string{".gif": ".gif", ".jpg": ".jpeg", ".jpeg": ".jpeg", ".png": ".png", ".tif": ".tiff", ".tiff": ".tiff", ".emf": ".emf", ".wmf": ".wmf", ".emz": ".emz", ".wmz": ".wmz"} // xlsxCNvPr directly maps the cNvPr (Non-Visual Drawing Properties). This // element specifies non-visual canvas properties. This allows for additional |