diff --git a/man/animation.Rd b/man/animation.Rd index f1c35450..55848e48 100644 --- a/man/animation.Rd +++ b/man/animation.Rd @@ -53,7 +53,7 @@ Must be length 1, or number of frames. If specified, then \code{fps} is ignored. \item{loop}{how many times to repeat the animation. Default is infinite.} -\item{dispose}{a frame \href{http://www.imagemagick.org/Usage/anim_basics/#dispose}{disposal method} +\item{dispose}{a frame \href{https://legacy.imagemagick.org/Usage/anim_basics/}{disposal method} from \link[=dispose_types]{dispose_types()}} \item{optimize}{optimize the \code{gif} animation by storing only the differences diff --git a/man/edges.Rd b/man/edges.Rd index 3a347614..fe6c2e41 100644 --- a/man/edges.Rd +++ b/man/edges.Rd @@ -50,7 +50,7 @@ For Hough-line detection, the geometry format is \verb{\{W\}x\{H\}+\{threshold\} defining the size and threshold of the filter used to find 'peaks' in the intermediate search image. For canny edge detection the format is \verb{\{radius\}x\{sigma\}+\{lower\%\}+\{upper\%\}}. More details and examples are -available at the \href{https://www.imagemagick.org/Usage/transform/#hough}{imagemagick website}. +available at the \href{https://legacy.imagemagick.org/Usage/transform/}{imagemagick website}. } \examples{ if(magick_config()$version > "6.8.9"){ diff --git a/man/morphology.Rd b/man/morphology.Rd index 41137558..8e35919e 100644 --- a/man/morphology.Rd +++ b/man/morphology.Rd @@ -43,7 +43,7 @@ dynamic range, for example: \code{"50\%!"}} \description{ Apply a morphology method. This is a very flexible function which can be used to apply any morphology method with custom parameters. -See \href{http://www.imagemagick.org/Usage/morphology/}{imagemagick website} +See \href{https://legacy.imagemagick.org/Usage/morphology/}{imagemagick website} for examples. } \examples{ diff --git a/vignettes/intro.Rmd b/vignettes/intro.Rmd index d996bfca..3ffd0fc5 100644 --- a/vignettes/intro.Rmd +++ b/vignettes/intro.Rmd @@ -212,7 +212,7 @@ img_blurred <- image_convolve(img, kern) image_append(c(img, img_blurred)) ``` -Or use any of the [standard kernels](http://www.imagemagick.org/Usage/convolve/) +Or use any of the [standard kernels](https://legacy.imagemagick.org/Usage/convolve/) ```{r} img %>% image_convolve('Sobel') %>% image_negate()