how to download and display an image from an URL in R?

前端 未结 3 2065
遥遥无期
遥遥无期 2020-12-03 17:24

My goal is to download an image from an URL and then display it in R.

I got an URL and figured out how to download it. But the downloaded file can\'t be previewed be

3条回答
  •  情书的邮戳
    2020-12-03 18:02

    this could work too here

    library("jpeg")
    
    library("png")
    
    x <- "http://upload.wikimedia.org/wikipedia/commons/5/5d/AaronEckhart10TIFF.jpg"    
    
    image_name<- readJPEG(getURLContent(x)) # for jpg
    
    image_name<- readPNG(getURLContent(x)) # for png
    

提交回复
热议问题