R/annotation-gspace.R

Defines functions annotation_gspace_image annotation_gspace

Documented in annotation_gspace annotation_gspace_image

#-------------------------------------------------------------------------------
#' Annotate a GraphSpace Plot
#'
#' @description
#' \code{annotation_gspace()} is a generic dispatcher for adding annotation
#' layers to a \code{ggplot}-based \code{GraphSpace} plot. The \code{type}
#' argument selects the annotation type; additional arguments are forwarded
#' to the corresponding handler.
#' 
#' @param type A string specifying the annotation type. Currently available: 
#' \code{"image"} (default), dispatched to \code{annotation_gspace_image()}.
#' @param ... Arguments forwarded to the annotation handler selected by
#'   \code{type}.
#' @param raster An image to be displayed. Accepted types:
#'   \itemize{
#'     \item A \code{\link{GraphSpace}} object — the image is extracted via
#'       \code{\link{gs_image}}.
#'     \item A \code{raster} object
#'       (see \code{\link[grDevices]{as.raster}}).
#'     \item A \code{matrix} or 3D array (RGB/RGBA), coerced to
#'       \code{raster} automatically.
#'   }
#' @param interpolate A logical value indicating whether to apply linear
#'   interpolation when the image is rendered at a different resolution than
#'   its native size. Defaults to \code{FALSE}.
#' @param opacity A numeric value in \code{[0, 1]} controlling the
#'   transparency of the image. \code{1} is fully opaque (default);
#'   \code{0} is fully transparent.
#' @param flip.v A logical value; if \code{TRUE}, the image is flipped
#'   vertically (top-to-bottom). Defaults to \code{FALSE}.
#' @param flip.h A logical value; if \code{TRUE}, the image is flipped
#'   horizontally (left-to-right). Defaults to \code{FALSE}.
#'
#' @return A ggplot2 layer object that can be added to a \code{ggplot()}
#'   call with \code{+}, or \code{invisible(NULL)} with a warning if the
#'   image could not be resolved.
#'
#' @seealso
#' \code{\link[ggplot2]{annotation_raster}},
#' \code{\link{gs_image}},
#' \code{\link{geom_nodespace}},
#' \code{\link{geom_edgespace}}
#'
#' @examples
#' 
#' # Assuming 'gs' is a GraphSpace object with 
#' # an image stored in gs_image(gs)
#' 
#' \dontrun{
#' # Pass a GraphSpace object directly
#' ggplot(gs) +
#'   annotation_gspace(gs) +
#'   geom_edgespace() +
#'   geom_nodespace()
#'
#' # Extract the image explicitly
#' ggplot(gs) +
#'   annotation_gspace(gs_image(gs)) +
#'   geom_edgespace() +
#'   geom_nodespace()
#'
#' # Dim the background and flip vertically
#' ggplot(gs) +
#'   annotation_gspace(gs, opacity = 0.5, flip.v = TRUE) +
#'   geom_edgespace() +
#'   geom_nodespace()
#'   
#' }
#' @rdname annotation_gspace
#' @export
annotation_gspace <- function(..., type = "image") {
  fn <- switch(type,
    image = annotation_gspace_image,
    rlang::abort(c(
      "x" = sprintf("Unknown annotation type '%s'.", type),
      "i" = "Available types: 'image'."
    ))
  )
  fn(...)
}

#' @importFrom ggplot2 annotation_raster
#' @importFrom grDevices col2rgb rgb
#' @rdname annotation_gspace
#' @export
annotation_gspace_image <- function(raster, interpolate = FALSE, opacity = 1,
  flip.v = FALSE, flip.h = FALSE) {

  if (missing(raster)) {
    rlang::abort("Argument 'raster' is missing, with no default.")
  }

  if (inherits(raster, "GraphSpace")) {
    raster <- gs_image(raster)
    if (is.null(raster)) {
      rlang::warn("The 'GraphSpace' object contains no image.")
      return(invisible(NULL))
    }
  }

  if (!inherits(raster, "raster")) {
    raster <- tryCatch({
      grDevices::as.raster(raster)
    }, error = function(e) {
      rlang::warn(c(
        "x" = "Failed to convert 'raster' to a valid raster object.",
        "i" = "Accepted types: matrix, array (RGB/RGBA), or raster."
      ))
      NULL
    })
    if (is.null(raster)) return(invisible(NULL))
  }

  if (opacity != 1) {
    alpha_channel <- as.integer(max(0, min(1, opacity)) * 255)
    img <- grDevices::col2rgb(as.character(raster), alpha = TRUE)
    img[4, ] <- alpha_channel
    raster <- as.raster(t(matrix(
      grDevices::rgb(img[1,], img[2,], img[3,], img[4,], maxColorValue = 255),
      nrow = nrow(raster), ncol = ncol(raster)
    )))
  }

  if (flip.v) raster <- raster[rev(seq_len(nrow(raster))), , drop = FALSE]
  if (flip.h) raster <- raster[, rev(seq_len(ncol(raster))), drop = FALSE]

  ggplot2::annotation_raster(
    raster      = raster,
    xmin        = 0,
    xmax        = 1,
    ymin        = 0,
    ymax        = 1,
    interpolate = interpolate
  )
}

Try the RGraphSpace package in your browser

Any scripts or data that you put into this service are public.

RGraphSpace documentation built on June 13, 2026, 9:06 a.m.