Skip to content

Commit 9f33363

Browse files
committed
Update some URLs
1 parent 5cdd5f0 commit 9f33363

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

R/analysis.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/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.*

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ About the R package:
2727

2828
About the underlying library:
2929

30-
- [Magick++ Tutorial](https://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf)
31-
- [Magick++ STL Documentation](https://www.imagemagick.org/Magick++/STL.html)
30+
- [Magick++ Tutorial](https://imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf)
31+
- [Magick++ STL Documentation](https://imagemagick.org/Magick++/STL.html)
3232

3333
## Hello World
3434

@@ -128,13 +128,13 @@ Binary packages for __macOS__ or __Windows__ can be installed directly from CRAN
128128
install.packages("magick")
129129
```
130130

131-
Installation from source on Linux or OSX requires the imagemagick [`Magick++`](https://www.imagemagick.org/Magick++/Documentation.html) library. On __Debian or Ubuntu__ install [libmagick++-dev](https://packages.debian.org/testing/libmagick++-dev):
131+
Installation from source on Linux or OSX requires the imagemagick [`Magick++`](https://imagemagick.org/Magick++/Documentation.html) library. On __Debian or Ubuntu__ install [libmagick++-dev](https://packages.debian.org/testing/libmagick++-dev):
132132

133133
```
134134
sudo apt-get install -y libmagick++-dev
135135
```
136136

137-
On __Fedora__, __CentOS or RHEL__ we need [ImageMagick-c++-devel](https://src.fedoraproject.org/rpms/ImageMagick). However on CentOS the system version of ImageMagick is quite old. More recent versions are available from the [ImageMagick downloads](https://www.imagemagick.org/download/linux/CentOS/x86_64/) website.
137+
On __Fedora__, __CentOS or RHEL__ we need [ImageMagick-c++-devel](https://src.fedoraproject.org/rpms/ImageMagick). However on CentOS the system version of ImageMagick is quite old. More recent versions are available from the [ImageMagick downloads](https://imagemagick.org/download/linux/CentOS/x86_64/) website.
138138

139139
```
140140
sudo yum install ImageMagick-c++-devel

man/analysis.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/color.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/defines.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/editing.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/geometry.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)