capture
capture copied to clipboard
Image Scale
Would it be possible to increase the scale of the image that is capture? For instance, make the captured image twice the height and width than shown in R Shiny.
I don't see a way here.
A solution could be to send the image to the server to do some post processing with {magick}, I could implement that, just didn't have the use until now.
You can also try shinyscreenshot, the JS lib html2canvas
behind has a scale
argument that can be useful.
Victor
Actually I found a way, re-install from GitHub then use scale
argument like capture(..., scale = 2)
This works wonderfully. Thank you very much!