Last chance! 50% off unlimited learning
Sale ends in
This function is the same as xfun::base64_uri()
(only with a
different function name). It can encode an image file as a base64 string,
which can be used in the img
tag in HTML.
image_uri(f)
The data URI as a character string.
Path to the image file.
Wush Wu and Yihui Xie
uri = image_uri(file.path(R.home("doc"), "html", "logo.jpg"))
if (interactive()) {
cat(sprintf("", uri), file = "logo.html")
browseURL("logo.html") # you can check its HTML source
}
Run the code above in your browser using DataLab