mirror of
https://github.com/fumiama/go-docx.git
synced 2026-06-06 00:00:24 +08:00
8 lines
155 B
Go
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)
|
|
}
|