到目前为止,我已经在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”。
对于任何建议,我都很感激。