install.phantom {convertGraph} | R Documentation |
takes the path to executable
'phantomJS'
binary and memorizes its absolute path for future calls. PhantomJS binary
can be downloaded from http://phantomjs.org/download.html
install.phantom(path)
path |
Path to executable 'phantomJS' binary, downloadble from http://phantomjs.org/download.html |
The function does not return anything
E. F. Haghish
Medical Informatics and Biostatistics (IMBI)
University of Freiburg, Germany
haghish@imbi.uni-freiburg.de
Department of Mathematics and Computer Science
University of Southern Denmark
haghish@imada.sdu.dk
## Not run:
#save the absolute path to phantomJS by giving relative path
install.phantom("./bin/phantomjs")
#save the absolute path to phantomJS
install.phantom("c:\phantomjs\bin\phantomjs")
#convert JPEG to PDF
convertGraph("./example.jpeg", "./example.pdf", path = "path to executable phantomJS" )
## End(Not run)