Skip to content

Commit 4660685

Browse files
committed
Update some URLs
1 parent 5cdd5f0 commit 4660685

40 files changed

+96
-96
lines changed

R/analysis.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#'
33
#' Functions for image calculations and analysis. This part of the package needs more work.
44
#'
5-
#' For details see [Image++](https://www.imagemagick.org/Magick++/Image++.html)
5+
#' For details see [Image++](https://imagemagick.org/Magick++/Image++.html)
66
#' documentation. Short descriptions:
77
#'
88
#' - [image_compare] calculates a metric by comparing image with a reference image.
@@ -19,7 +19,7 @@
1919
#' @inheritParams editing
2020
#' @inheritParams painting
2121
#' @param reference_image another image to compare to
22-
#' @param metric string with a [metric](http://www.imagemagick.org/script/command-line-options.php#metric)
22+
#' @param metric string with a [metric](https://imagemagick.org/script/command-line-options.php#metric)
2323
#' from [metric_types()][metric_types] such as `"AE"` or `"phash"`
2424
#' @examples
2525
#' out1 <- image_blur(logo, 3)

R/animation.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#'
33
#' Operations to manipulate or combine multiple frames of an image. Details below.
44
#'
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)
66
#' documentation. Short descriptions:
77
#'
88
#' - [image_animate] coalesces frames by playing the sequence and converting to `gif` format.

R/coder.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#' @export
1010
#' @rdname config
1111
#' @param format image format such as \code{png}, \code{tiff} or \code{pdf}.
12-
#' @references \url{https://www.imagemagick.org/Magick++/CoderInfo.html}
12+
#' @references \url{https://imagemagick.org/Magick++/CoderInfo.html}
1313
#' @examples coder_info("png")
1414
#' coder_info("jpg")
1515
#' coder_info("pdf")

R/color.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#'
33
#' Functions to adjust contrast, brightness, colors of the image. Details below.
44
#'
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)
66
#' documentation. Short descriptions:
77
#'
88
#' - [image_modulate] adjusts brightness, saturation and hue of image relative to current.
@@ -23,8 +23,8 @@
2323
#'
2424
#' Note that
2525
#' 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)
2828
#' which can be modified via [image_convert()].
2929
#'
3030
#' @export
@@ -100,7 +100,7 @@ image_ordered_dither <- function(image, threshold_map){
100100
#' @export
101101
#' @rdname color
102102
#' @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
104104
#' [channel_types][channel_types] for example `"alpha"` or `"hue"` or `"cyan"`
105105
image_channel <- function(image, channel = 'lightness'){
106106
magick_image_channel(image, channel)
@@ -153,7 +153,7 @@ image_background <- function(image, color, flatten = TRUE){
153153
#' @export
154154
#' @rdname color
155155
#' @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].
157157
#' @examples
158158
#' # Black virtual pixel on a 45° rotation
159159
#' image_distort(image_virtual_pixel(logo, "Black"), "AffineProjection", c(0.70710678,0.70710678,-0.70710678,0.70710678,0,0), bestfit = TRUE)

R/composite.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Image Composite
22
#'
33
#' Similar to the ImageMagick `composite` utility: compose an image on top of another one using a
4-
#' [CompositeOperator](https://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator).
4+
#' [CompositeOperator](https://imagemagick.org/Magick++/Enumerations.html#CompositeOperator).
55
#'
66
#' The `image_composite` function is vectorized over both image arguments: if the first image has
77
#' `n` frames and the second `m` frames, the output image will contain `n` * `m` frames.
@@ -19,7 +19,7 @@
1919
#' @param offset string with either a [gravity_type][gravity_types] or a [geometry_point][geometry_point]
2020
#' to set position of top image.
2121
#' @param operator string with a
22-
#' [composite operator](https://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator)
22+
#' [composite operator](https://imagemagick.org/Magick++/Enumerations.html#CompositeOperator)
2323
#' from [compose_types()][compose_types]
2424
#' @param composite_image composition image
2525
#' @param compose_args additional arguments needed for some composite operations
@@ -56,7 +56,7 @@ image_composite <- function(image, composite_image, operator = "atop",
5656

5757
#' @export
5858
#' @rdname composite
59-
#' @param geometry a [geometry string](https://www.imagemagick.org/Magick++/Geometry.html)
59+
#' @param geometry a [geometry string](https://imagemagick.org/Magick++/Geometry.html)
6060
#' to set height and width of the border, e.g. `"10x8"`. In addition [image_frame] allows
6161
#' for adding shadow by setting an offset e.g. `"20x10+7+2"`.
6262
#' @examples

R/defines.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#' @export
2020
#' @inheritParams editing
2121
#' @param defines a named character vector with extra options to control reading.
22-
#' These are the `-define key{=value}` settings in the [command line tool](http://www.imagemagick.org/script/command-line-options.php#define).
22+
#' These are the `-define key{=value}` settings in the [command line tool](https://imagemagick.org/script/command-line-options.php#define).
2323
#' Use an empty string for value-less defines, and NA to unset a define.
2424
#' @rdname defines
2525
#' @name defines

R/edit.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,12 +257,12 @@ image_write <- function(image, path = NULL, format = NULL, quality = NULL,
257257
#' @param format output format such as `"png"`, `"jpeg"`, `"gif"`, `"rgb"` or `"rgba"`.
258258
#' @param depth color depth (either 8 or 16)
259259
#' @param antialias enable anti-aliasing for text and strokes
260-
#' @param type string with [imagetype](https://www.imagemagick.org/Magick++/Enumerations.html#ImageType)
260+
#' @param type string with [imagetype](https://imagemagick.org/Magick++/Enumerations.html#ImageType)
261261
#' value from [image_types][image_types] for example `grayscale` to convert into black/white
262-
#' @param colorspace string with a [`colorspace`](https://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType)
262+
#' @param colorspace string with a [`colorspace`](https://imagemagick.org/Magick++/Enumerations.html#ColorspaceType)
263263
#' from [colorspace_types][colorspace_types] for example `"gray"`, `"rgb"` or `"cmyk"`
264264
#' @param matte set to `TRUE` or `FALSE` to enable or disable transparency
265-
#' @param interlace string with [interlace](https://www.imagemagick.org/Magick++/Enumerations.html#InterlaceType)
265+
#' @param interlace string with [interlace](https://imagemagick.org/Magick++/Enumerations.html#InterlaceType)
266266
#' @param profile path to file with ICC color profile
267267
image_convert <- function(image, format = NULL, type = NULL, colorspace = NULL,
268268
depth = NULL, antialias = NULL, matte = NULL, interlace = NULL, profile = NULL){
@@ -353,7 +353,7 @@ image_strip <- function(image){
353353
#' @rdname editing
354354
#' @inheritParams device
355355
#' @inheritParams painting
356-
#' @param pseudo_image string with [pseudo image](http://www.imagemagick.org/script/formats.php#pseudo)
356+
#' @param pseudo_image string with [pseudo image](https://imagemagick.org/script/formats.php#pseudo)
357357
#' specification for example `"radial-gradient:purple-yellow"`
358358
#' @examples # create a solid canvas
359359
#' image_blank(600, 400, "green")

R/effects.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ image_reducenoise <- function(image, radius = 1L){
2727
#' @export
2828
#' @rdname effects
2929
#' @param noisetype string with a
30-
#' [noisetype](https://www.imagemagick.org/Magick++/Enumerations.html#NoiseType) value
30+
#' [noisetype](https://imagemagick.org/Magick++/Enumerations.html#NoiseType) value
3131
#' from [noise_types][noise_types].
3232
#' @examples
3333
#' image_noise(logo)

R/fx.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Image FX
22
#'
3-
#' Apply a custom an [fx expression](https://www.imagemagick.org/script/fx.php) to the image.
3+
#' Apply a custom an [fx expression](https://imagemagick.org/script/fx.php) to the image.
44
#'
55
#' There are two different interfaces. The [image_fx] function simply applies
66
#' the same fx to each frame in the input image. The [image_fx_sequence] function
@@ -12,7 +12,7 @@
1212
#' @rdname fx
1313
#' @name fx
1414
#' @family image
15-
#' @param expression string with an [fx expression](https://www.imagemagick.org/script/fx.php)
15+
#' @param expression string with an [fx expression](https://imagemagick.org/script/fx.php)
1616
#' @examples # Show image_fx() expression
1717
#' img <- image_convert(logo, colorspace = "Gray")
1818
#' gradient_x <- image_convolve(img, kernel = "Prewitt")

R/geometry.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' for use in image transformations. You can either specify these manually as
55
#' strings or use the helper functions below.
66
#'
7-
#' See [ImageMagick Manual](http://www.imagemagick.org/Magick++/Geometry.html)
7+
#' See [ImageMagick Manual](https://imagemagick.org/Magick++/Geometry.html)
88
#' for details about the syntax specification.
99
#' Examples of `geometry` strings:
1010
#' - __`"500x300"`__ -- *Resize image keeping aspect ratio, such that width does not exceed 500 and the height does not exceed 300.*

0 commit comments

Comments
 (0)