1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-05 15:50:24 +08:00
Files
go-docx/image.go
2023-02-20 22:48:04 +08:00

8 lines
155 B
Go

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)
}