knitr (version 1.24)

image_uri: Encode an image file to a data URI

Description

This function takes an image file and uses the markdown package to encode it as a base64 string, which can be used in the img tag in HTML.

Usage

image_uri(f)

Arguments

f

Path to the image file.

Value

The data URI as a character string.

References

http://en.wikipedia.org/wiki/Data_URI_scheme

Examples

Run this code
# NOT RUN {
uri = image_uri(file.path(R.home("doc"), "html", "logo.jpg"))
if (interactive()) {
    cat(sprintf("<img src=\"%s\" />", uri), file = "logo.html")
    browseURL("logo.html")  # you can check its HTML source
}
# }

Run the code above in your browser using DataCamp Workspace