我正在使用webshot从HTML保存png文件:
p <- plot_ly(plotly::wind, r = ~r, t = ~t) %>% add_area(color = ~nms)%>%
layout(radialaxis = list(ticksuffix = "%"), orientation = 270)
saveWidget(as.widget(p), "temp.html")
webshot("temp.html",file = "temp.png",cliprect = "viewport")
这给了我一个像this的情节。它会在左上角返回一个小图像。如何在中心放置全尺寸图像?