1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-27 06:30:24 +08:00

add AddInlineDrawingFrom

This commit is contained in:
源文雨
2023-02-20 22:48:04 +08:00
parent f07b5dd914
commit 292a298c57
27 changed files with 634 additions and 130 deletions

7
image.go Normal file
View File

@@ -0,0 +1,7 @@
package docxlib
// addImage add image to docx and return its rId
func (f *Docx) addImage(m Media) string {
f.addMedia(m)
return f.addImageRelation(m)
}