Lchiffon / wordcloud2

R interface to wordcloud for data visualization.
397 stars 113 forks source link

Vector export or High resolution wordcloud #14

Closed kakakhan2016 closed 7 years ago

kakakhan2016 commented 7 years ago

Thanks for awesome work. Kindly guide me how can generated wordcloud can be export as vector. I have already created PDF file using saveWidget and webshot code but PDF contain raster image not vector.

If vector export from html5 canvas is not possible than how can I render high resolution wordcloud. Increasing size parameter is also not helpful as wordcloud is only visible in shown browser page. I have also tried to export from RStudio but image dimension can be set maximum to 1200 pixles. I need wordcloud in size atleast of 2500pxx2500px

Lchiffon commented 7 years ago
install.packages("webshot")
webshot::install_phantomjs()
library(wordcloud2)
hw = wordcloud2(demoFreq,size = 3)
saveWidget(hw,"1.html",selfcontained = F)
webshot::webshot("1.html","1.png",vwidth = 1992, vheight = 1744, delay =10)
kakakhan2016 commented 7 years ago

Thanks Lchiffon. Previously I have already tried this code but wordcloud size was 1. Wordcloud size of 3 works great.