
Last chance! 50% off unlimited learning
Sale ends in
Add an external image into a bsdoc
object.
# S3 method for bsdoc
addImage(doc, filename, width, height,
par.properties = parProperties(text.align = "center", padding = 5), ...)
bsdoc
object where external
image has to be added
"character"
value, complete
filename of the external image
image width in pixel
image height in pixel
paragraph formatting properties of
the paragraph that contains images. An object of class
parProperties
further arguments, not used.
an object of class bsdoc
.
# NOT RUN {
#START_TAG_TEST
doc.filename = "addImage_bsdoc/example.html"
# set default font size to 11
options( "ReporteRs-fontsize" = 11 )
doc = bsdoc( )
# the file 'logo.jpg' only exists in R for Windows
img.file = file.path( Sys.getenv("R_HOME"), "doc", "html", "logo.jpg" )
doc = addImage(doc, img.file, width = 100, height = 76 )
# Write the object
writeDoc( doc, file = doc.filename )
#STOP_TAG_TEST
# }
Run the code above in your browser using DataLab