get_gif <- function(image_path){
files <- list.files(image_path)
img <- image_read(file.path(image_path,files), density = NULL, depth = NULL, strip = FALSE)
img <- image_animate(image_scale(img, "500x400"), fps = 0.5, dispose = "previous")
return(img)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.