add an image into an rdocx object
body_add_img(x, src, style = NULL, width, height, pos = "after")
an rdocx object
image filename
paragraph style
height in inches
height in inches
where to add the new element relative to the cursor, one of "after", "before", "on".
# NOT RUN {
doc <- read_docx()
img.file <- file.path( Sys.getenv("R_HOME"), "doc", "html", "logo.jpg" )
if( file.exists(img.file) ){
doc <- body_add_img(x = doc, src = img.file, height = 1.06, width = 1.39 )
}
print(doc, target = "body_add_img.docx" )
# }
Run the code above in your browser using DataLab