Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

slip_in_img

append an image


Description

append an image into a paragraph of an rdocx object

Usage

slip_in_img(x, src, style = NULL, width, height, pos = "after")

Arguments

x

an rdocx object

src

image filename, the basename of the file must not contain any blank.

style

text style

width

height in inches

height

height in inches

pos

where to add the new element relative to the cursor, "after" or "before".

Note

This function will be deprecated in a next release because it is not efficient and make users write complex code. Use instead fpar() to build formatted paragraphs.

Examples

img.file <- file.path( R.home("doc"), "html", "logo.jpg" )
x <- read_docx()
x <- body_add_par(x, "R logo: ", style = "Normal")
x <- slip_in_img(x, src = img.file, style = "strong", width = .3, height = .3)

print(x, target = tempfile(fileext = ".docx"))

officer

Manipulation of Microsoft Word and PowerPoint Documents

v0.3.18
GPL-3
Authors
David Gohel [aut, cre], Frank Hangler [ctb] (function body_replace_all_text), Liz Sander [ctb] (several documentation fixes), Anton Victorson [ctb] (fixes xml structures), Jon Calder [ctb] (update vignettes), John Harrold [ctb] (function annotate_base), John Muschelli [ctb] (google doc compatibility)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.