我有一个闪亮的应用程序,它使用fileInput
并magick
读取用户选择的图像,并将其显示为 ggplot。
library(shiny)
library(magick)
library(ggplot2)
ui <- fluidPage(
titlePanel(""),
sidebarLayout(
sidebarPanel(
fileInput("current_image", "Choose image file")),
mainPanel(
plotOutput("current_image_plot")
)
)
)
server <- function(input, output) {
output$current_image_plot <- renderPlot({
req(input$current_image)
myplot <- magick::image_read(input$current_image$datapath)
myplot <- image_ggplot(myplot)
return(myplot)
})
}
shinyApp(ui = ui, server = server)
但是,我想将读取图像的逻辑与绘制图像的逻辑分开。我尝试将image_read
其放入内部observeEvent
,但这引发了错误The 'image' argument is not a magick image object.
我知道当我class(myplot)
在 中打印时observeEvent
,它会返回一个magick-image
对象,那么在我尝试访问时发生了什么变化active_image
?
library(shiny)
library(magick)
library(ggplot2)
ui <- fluidPage(
titlePanel(""),
sidebarLayout(
sidebarPanel(
fileInput("current_image", "Choose image file")),
mainPanel(
plotOutput("current_image_plot")
)
)
)
server <- function(input, output) {
active_image <- observeEvent(input$current_image, {
req(input$current_image)
myplot <- magick::image_read(input$current_image$datapath)
return(myplot)
})
output$current_image_plot <- renderPlot({
req(input$current_image)
myplot <- image_ggplot(active_image)
return(myplot)
})
}
shinyApp(ui = ui, server = server)