savePNG: savePNG

Description Usage Arguments Value Examples

Description

savePNG write current cytoscape view, at current resolution, to a PNG file.

Usage

1
2
## S4 method for signature 'RCyjs'
savePNG(obj, filename)

Arguments

obj

an RCyjs instance

filename

a character string

Value

no return value

Examples

1
2
3
4
5
6
7
8
9
if(interactive()){
   rcy <- RCyjs(title="layouts", graph=createTestGraph(nodeCount=20, edgeCount=20))
   style.filename <- system.file(package="RCyjs", "extdata", "sampleStyle1.js");
   loadStyleFile(rcy, style.filename)
   layout(rcy, "cose")
   fit(rcy)
   filename <- tempfile(fileext=".png")
   savePNG(rcy, filename)
   }

paul-shannon/RCyjs documentation built on May 28, 2019, 1:15 p.m.