Error saving gif video with R animation library and Imagemagick

后端 未结 2 630
温柔的废话
温柔的废话 2021-01-18 20:23

I am trying to create a simple .gif video using Windows 7. I installed ImageMagick and it seems to be working by itself. Here is the following code I tried to run and the

2条回答
  •  佛祖请我去吃肉
    2021-01-18 21:09

    I encountered the same problem. Imposing a short file path solved the error for me.

     path.to.convert <- paste0(shortPathName(
                        "C:\\Program Files\\ImageMagick-6.9.0-Q16\\"), "convert.exe")
     ani.options(convert=path.to.convert)
    

提交回复
热议问题