Nothing
#' Dither image using a threshold dithering map
#'
#' These filters reduces the number of colours in your layer and uses various
#' threshold maps along with a dithering algorithm to disperse colour error.
#'
#' @param map_size One of 2, 3, 4, or 8. Sets the threshold map used for
#' dithering. The larger, the better approximation of the input colours
#' @param levels The number of threshold levels in each channel. Either a single
#' integer to set the same number of levels in each channel, or 3 values to set
#' the levels individually for each colour channel
#' @inheritParams with_dither
#'
#' @return Depending on the input, either a `grob`, `Layer`, list of `Layer`s,
#' `guide`, or `element` object. Assume the output can be used in the same
#' context as the input.
#'
#' @family dithering filters
#'
#' @export
#'
#' @examplesIf !ggfx:::is_rcmd_check()
#' library(ggplot2)
#'
#' # Ordered dither
#' ggplot(faithfuld, aes(waiting, eruptions)) +
#' with_ordered_dither(
#' geom_raster(aes(fill = density), interpolate = TRUE)
#' ) +
#' scale_fill_continuous(type = 'viridis')
#'
#' # Halftone dither
#' ggplot(faithfuld, aes(waiting, eruptions)) +
#' with_halftone_dither(
#' geom_raster(aes(fill = density), interpolate = TRUE)
#' ) +
#' scale_fill_continuous(type = 'viridis')
#'
#' # Circle dither with offset
#' ggplot(faithfuld, aes(waiting, eruptions)) +
#' with_circle_dither(
#' geom_raster(aes(fill = density), interpolate = TRUE),
#' offset = 29,
#' colourspace = 'cmyk'
#' ) +
#' scale_fill_continuous(type = 'viridis')
#'
with_ordered_dither <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ...) {
UseMethod('with_ordered_dither')
}
#' @importFrom grid gTree
#' @export
with_ordered_dither.grob <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', background = NULL,
..., id = NULL, include = is.null(id)) {
if (!map_size %in% c(2, 3, 4, 8)) {
abort('Unknown map size. Possible values are: 2, 3, 4, or 8')
}
map <- paste0('o', map_size, 'x', map_size)
if (length(levels) > 0) {
map <- paste0(map, ',', paste(as.integer(levels), collapse = ','))
}
gTree(grob = x, map = map, colourspace = tolower(colourspace),
background = background, id = id, include = isTRUE(include),
cl = c('ordered_dither_grob', 'filter_grob'))
}
#' @export
with_ordered_dither.Layer <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ..., id = NULL,
include = is.null(id)) {
filter_layer_constructor(x, with_ordered_dither, 'OrderedDitheredGeom',
map_size = map_size, levels = levels,
colourspace = colourspace, ..., include = include,
ids = list(id = id))
}
#' @export
with_ordered_dither.list <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ..., id = NULL,
include = is.null(id)) {
filter_list_constructor(x, with_ordered_dither, 'OrderedDitheredGeom',
map_size = map_size, levels = levels,
colourspace = colourspace, ..., include = include,
ids = list(id = id))
}
#' @export
with_ordered_dither.ggplot <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB',
ignore_background = TRUE, ...) {
filter_ggplot_constructor(x, with_ordered_dither, map_size = map_size,
levels = levels, colourspace = colourspace, ...,
ignore_background = ignore_background)
}
#' @export
with_ordered_dither.character <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ..., id = NULL,
include = is.null(id)) {
filter_character_constructor(x, with_ordered_dither, 'OrderedDitheredGeom',
map_size = map_size, levels = levels,
colourspace = colourspace, ..., include = include,
ids = list(id = id))
}
#' @export
with_ordered_dither.function <- with_ordered_dither.character
#' @export
with_ordered_dither.formula <- with_ordered_dither.character
#' @export
with_ordered_dither.raster <- with_ordered_dither.character
#' @export
with_ordered_dither.nativeRaster <- with_ordered_dither.character
#' @export
with_ordered_dither.element <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ...) {
filter_element_constructor(x, with_ordered_dither, map_size = map_size,
levels = levels, colourspace = colourspace, ...)
}
#' @export
with_ordered_dither.guide <- function(x, map_size = 8, levels = NULL,
colourspace = 'sRGB', ...) {
filter_guide_constructor(x, with_ordered_dither, map_size = map_size,
levels = levels, colourspace = colourspace, ...)
}
#' @rdname raster_helpers
#' @importFrom magick image_read image_ordered_dither image_convert image_destroy image_composite geometry_point image_distort image_crop image_combine geometry_area
#' @export
#' @keywords internal
ordered_dither_raster <- function(x, map, colourspace = 'sRGB', offset = NULL) {
raster <- image_read(x)
if (colourspace != 'srgb') {
raster <- image_convert(raster, colorspace = colourspace)
}
if (is.null(offset)) {
dithered <- image_ordered_dither(raster, map)
} else {
dim <- image_info(raster)
raster <- image_composite(
image_convert(image_blank(dim$width * 2, dim$height * 2), colorspace = colourspace),
raster,
'over',
geometry_point(dim$width / 2, dim$height / 2)
)
raster <- image_separate(raster)
raster <- raster[-length(raster)]
current_offset <- 0
map <- strsplit(map, ',')[[1]]
if (length(map) > 1) {
map <- c(map[1], rep_len(map[-1], length(raster)))
}
alpha <- image_separate(image_blank(dim$width * 2, dim$height * 2, 'black'), 'red')
for (i in seq_len(length(raster) - 1)) {
if (length(map) > 1) {
channel_map <- paste0(map[i], ',', map[i + 1])
} else {
channel_map <- map
}
raster[i] <- image_distort(
image_ordered_dither(
image_distort(raster[i], 'SRT', current_offset),
channel_map
),
'SRT',
-current_offset
)
alpha <- image_composite(alpha, raster[i], 'plus')
current_offset <- current_offset + offset
}
raster <- image_combine(raster, colourspace)
raster <- image_composite(raster, alpha, 'CopyOpacity')
dithered <- image_crop(
raster,
geometry_area(dim$width, dim$height, dim$width / 2, dim$height / 2)
)
}
if (colourspace != 'srgb') {
dithered <- image_convert(dithered, colorspace = 'sRGB')
}
x <- as.integer(dithered)
image_destroy(raster)
image_destroy(dithered)
x
}
#' @importFrom grid makeContent setChildren gList
#' @export
makeContent.ordered_dither_grob <- function(x) {
ras <- rasterise_grob(x$grob)
raster <- ordered_dither_raster(ras$raster, x$map, x$colourspace, x$offset)
raster <- groberize_raster(raster, ras$location, ras$dimension, x$id, x$include)
setChildren(x, gList(x$background, raster))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.