将R图像转换为Base 64

时间:2015-10-29 08:35:15

标签: r base64

我一直在做一些决策树情节,如下所示

library(party)
irisct <- ctree(Species ~ .,data = iris)

plot(irisct,type="simple")

但现在我想看到图像的基础64,所以我可以将图形保存为JSON。

还是有另一种方法将R图像发送到网络上吗?

3 个答案:

答案 0 :(得分:10)

我不知道你想要完成什么,但这是一个例子:

# save example plot to file
png(tf1 <- tempfile(fileext = ".png")); plot(0); dev.off()

# Base64-encode file
library(RCurl)
txt <- base64Encode(readBin(tf1, "raw", file.info(tf1)[1, "size"]), "txt")

# Create inline image, save & open html file in browser 
html <- sprintf('<html><body><img src="data:image/png;base64,%s"></body></html>', txt)
cat(html, file = tf2 <- tempfile(fileext = ".html"))
browseURL(tf2)

enter image description here

答案 1 :(得分:8)

您可以尝试使用knitr

library(knitr)

printImageURI<-function(file){
  uri=image_uri(file)
  file.remove(file)
  cat(sprintf("<img src=\"%s\" />\n", uri))    
}

printImageURI函数获取磁盘上文件的文件名(我经常使用ggplot生成的PNG文件)。它适用于Firefox,Chrome和IE。

答案 2 :(得分:1)

如果您安装了软件包base64enc,它会更简单,结果相同(假设您已将图像file.png放在磁盘上):

# Using RCurl:
txt1 <- RCurl::base64Encode(readBin("file.png", "raw", file.info("file.png")[1, "size"]), "txt")

# Using base64encode:
txt2 <- base64enc::base64encode("file.png")

html1 <- sprintf('<html><body><img src="data:image/png;base64,%s"></body></html>', txt1)
html2 <- sprintf('<html><body><img src="data:image/png;base64,%s"></body></html>', txt2)
# This returns TRUE:
identical(html1, html2)

但使用knitr::image_uri("file.png")(参见Bert Neef的答案)更简单!