From ab12307393461e7055f664d296a3a0e686eebb39 Mon Sep 17 00:00:00 2001 From: xuri Date: Sun, 21 Aug 2022 01:09:32 +0800 Subject: This made library allowing insert EMZ and WMZ format image - Update dependencies module --- picture.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'picture.go') diff --git a/picture.go b/picture.go index 84c7731..d087c61 100644 --- a/picture.go +++ b/picture.go @@ -363,7 +363,7 @@ func (f *File) addMedia(file []byte, ext string) string { // setContentTypePartImageExtensions provides a function to set the content // type for relationship parts and the Main Document part. func (f *File) setContentTypePartImageExtensions() { - imageTypes := map[string]string{"jpeg": "image/", "png": "image/", "gif": "image/", "tiff": "image/", "emf": "image/x-", "wmf": "image/x-"} + imageTypes := map[string]string{"jpeg": "image/", "png": "image/", "gif": "image/", "tiff": "image/", "emf": "image/x-", "wmf": "image/x-", "emz": "image/x-", "wmz": "image/x-"} content := f.contentTypesReader() content.Lock() defer content.Unlock() -- cgit v1.2.1