|
2 | 2 | #' |
3 | 3 | #' Functions to adjust contrast, brightness, colors of the image. Details below. |
4 | 4 | #' |
5 | | -#' For details see [Magick++ STL](https://www.imagemagick.org/Magick++/STL.html) |
| 5 | +#' For details see [Magick++ STL](https://imagemagick.org/Magick++/STL.html) |
6 | 6 | #' documentation. Short descriptions: |
7 | 7 | #' |
8 | 8 | #' - [image_modulate] adjusts brightness, saturation and hue of image relative to current. |
|
23 | 23 | #' |
24 | 24 | #' Note that |
25 | 25 | #' colors are also determined by image properties |
26 | | -#' [imagetype](https://www.imagemagick.org/Magick++/Enumerations.html#ImageType) and |
27 | | -#' [colorspace](https://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType) |
| 26 | +#' [imagetype](https://imagemagick.org/Magick++/Enumerations.html#ImageType) and |
| 27 | +#' [colorspace](https://imagemagick.org/Magick++/Enumerations.html#ColorspaceType) |
28 | 28 | #' which can be modified via [image_convert()]. |
29 | 29 | #' |
30 | 30 | #' @export |
@@ -100,7 +100,7 @@ image_ordered_dither <- function(image, threshold_map){ |
100 | 100 | #' @export |
101 | 101 | #' @rdname color |
102 | 102 | #' @param channel a string with a |
103 | | -#' [channel](https://www.imagemagick.org/Magick++/Enumerations.html#ChannelType) from |
| 103 | +#' [channel](https://imagemagick.org/Magick++/Enumerations.html#ChannelType) from |
104 | 104 | #' [channel_types][channel_types] for example `"alpha"` or `"hue"` or `"cyan"` |
105 | 105 | image_channel <- function(image, channel = 'lightness'){ |
106 | 106 | magick_image_channel(image, channel) |
@@ -153,7 +153,7 @@ image_background <- function(image, color, flatten = TRUE){ |
153 | 153 | #' @export |
154 | 154 | #' @rdname color |
155 | 155 | #' @inheritParams editing |
156 | | -#' @param virtual_pixel_method a string with a [virtual pixel method](https://www.imagemagick.org/Magick++/Enumerations.html#VirtualPixelMethod) from [virtual_pixel_methods][virtual_pixel_methods]. |
| 156 | +#' @param virtual_pixel_method a string with a [virtual pixel method](https://imagemagick.org/Magick++/Enumerations.html#VirtualPixelMethod) from [virtual_pixel_methods][virtual_pixel_methods]. |
157 | 157 | #' @examples |
158 | 158 | #' # Black virtual pixel on a 45° rotation |
159 | 159 | #' image_distort(image_virtual_pixel(logo, "Black"), "AffineProjection", c(0.70710678,0.70710678,-0.70710678,0.70710678,0,0), bestfit = TRUE) |
|
0 commit comments