问题描述
我正在尝试将我的图像绘制到 r Shiny 中的框元素。但是我遇到了无法根据框元素大小动态更改的图像大小的问题。我试图设置图像的高度和宽度,但问题没有解决。这是我的代码:
ui <- shinyUI(
fluidPage(
column(8,Box(title=NULL,width=12,imageOutput('my_image')))
)
)
server <- function(input,output) {
output$my_image <- renderImage({
filename <- normalizePath(file.path('.','image.jpg'))
list(src = filename,height = 'auto',width = 'auto',contentType = 'image/jpg')
},deleteFile = F)
}
shinyApp(ui,server)
我该怎么办?我没有很好的基本 html 和 javascript。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)