在R中将一系列pdf文件转换为gif

时间:2019-01-21 12:36:35

标签: r imagemagick

到目前为止,我已经在R中创建了多个png,并使用了ani.options和im.convert从动画包中创建了gif动画(在Windows上安装了ImageMagick)。它可以正常工作:

`ani.options(nmax = 100, loop = 1, interval = 0.1)
 for(i in 1:100){
    name = rename(i)
    png(name)
    plot(...)
    dev.off()
 }
 im.convert("*.png", output ="animation.gif", convert = c("convert"), 
       cmd.fun = if (.Platform$OS.type == "windows") shell else system, 
       extra.opts = "",clean = TRUE)` 
我想将pdf转换为gif动画。我再次生成并保存了几个pdf文件,没有任何问题。现在的挑战是将这些pdf转换为gif动画。我尝试了不同的方法,但是我不知道如何修改im.convert命令以及如何设置ani.options参数以将pdf组合为gif动画。

到目前为止,我尝试将 ani.type ani.dev 设置为pdf,并将im.convert中的“ .png”更改为“ .pdf”。

对于任何建议,我都很感激。

1 个答案:

答案 0 :(得分:0)

我在这里找到了答案: Error using magick R to import PDF

在安装64位版本的GhostScript之后,它就可以工作了。