tests/testthat/agg_png/app.R

library(shiny)
library(ggplot2)
library(thematic)

thematic_shiny("black", "white", font = font_spec("Pacifico", 1.25, update = TRUE))

ui <- fluidPage(
  imageOutput("ragg_png")
)

render_image <- function(expr) {
  snapshotPreprocessOutput(renderImage(expr), function(value) {})
}

server <- function(input, output, session) {
  output$ragg_png <- render_image({
    file <- thematic_save_plot(
      qplot(1:10) + ggtitle("ragg::agg_png"),
      device = ragg::agg_png,
      width = 800, height = 400
    )
    list(src = file, width = 800, height = 400)
  })
}

shinyApp(ui, server)
rstudio/thematic documentation built on Aug. 2, 2024, 8:36 p.m.