diff options
| author | xuri <xuri.me@gmail.com> | 2022-05-14 00:54:36 +0800 |
|---|---|---|
| committer | xuri <xuri.me@gmail.com> | 2022-05-14 00:54:36 +0800 |
| commit | c2311ce87dd2c681406728f885d2228dbefd7a21 (patch) | |
| tree | 6f99cf415fa045d761b18772dd2be59ff7b92887 /xmlDrawing.go | |
| parent | 0c3fd0223c784ddcc7d2442105b920587b970727 (diff) | |
This made library allowing insert WMF format image
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 7d0b2df..0b6df05 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -119,7 +119,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"} +var supportedImageTypes = map[string]string{".gif": ".gif", ".jpg": ".jpeg", ".jpeg": ".jpeg", ".png": ".png", ".tif": ".tiff", ".tiff": ".tiff", ".emf": ".emf", ".wmf": ".wmf"} // xlsxCNvPr directly maps the cNvPr (Non-Visual Drawing Properties). This // element specifies non-visual canvas properties. This allows for additional |
