我正在尝试直接从网址加载.jpeg图片。我想知道是否有一种基本的方法来使用url
连接。
我第一次尝试:
require(biOps)
con <- url("http://upload.wikimedia.org/wikipedia/commons/9/95/Apollonian_spheres.jpg")
pic <- readJpeg(con)
#Error in readJpeg(con) : Cannot open file.
This other question似乎是在同一行,但对于.png文件。我试图适应.jpeg,但也有错误。
require(biOps)
require(RCurl)
myurl <- "http://upload.wikimedia.org/wikipedia/commons/9/95/Apollonian_spheres.jpg"
pic <- readJpeg(getURLContent(myurl))
#Error in readJpeg(getURLContent(myurl)) : Cannot open file.
非常感谢任何帮助!
答案 0 :(得分:20)
只需将图像保存为临时文件:
myurl <- "http://upload.wikimedia.org/wikipedia/commons/9/95/Apollonian_spheres.jpg"
z <- tempfile()
download.file(myurl,z,mode="wb")
pic <- readJPEG(z)
file.remove(z) # cleanup
答案 1 :(得分:2)