javascript - cytoscape save graph as image by button - Stack Overflow

I saw in the cytoscape.js tutorial that there are ways to represent the graph as image (png, jpg), but

I saw in the cytoscape.js tutorial that there are ways to represent the graph as image (png, jpg), but there is a way to represent it as regular graph, and if the user would want he can save it as image by click on button or similar option?

Didn't find simple way for that.

I am using python flask as my server side and cytoscape js for the graphes.

I saw in the cytoscape.js tutorial that there are ways to represent the graph as image (png, jpg), but there is a way to represent it as regular graph, and if the user would want he can save it as image by click on button or similar option?

Didn't find simple way for that.

I am using python flask as my server side and cytoscape js for the graphes.

Share Improve this question edited Jun 26, 2018 at 4:45 Rimian 38.5k17 gold badges125 silver badges119 bronze badges asked Aug 26, 2016 at 14:41 AviAvi 931 silver badge4 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 13

You don't need server side code to save files from the browser anymore.

You can save files using the saveAs() API in JS. Here's a polyfill: https://github./eligrey/FileSaver.js/

If you want the graph data, it would just be

var jsonBlob = new Blob([ JSON.stringify( cy.json() ) ], { type: 'application/javascript;charset=utf-8' });

saveAs( jsonBlob, 'graph.json' );

Or for images

var b64key = 'base64,';
var b64 = cy.png().substring( content.indexOf(b64key) + b64key.length );
var imgBlob = base64ToBlob( b64, 'image/png' );

saveAs( imgBlob, 'graph.png' );

(Refer to other question re. base64toBlob())

Improving the answer marked as correct:

You can use saveAs() directly, simply do:

import { saveAs } from "file-saver"; //or require
...
saveAs(cy.png(), "graph.png");

No need to handle blob content, same goes for .jpg()

If you want a solution without further library usage, here an idea:

const pngBlob = await cy.png({
  output: 'blob-promise',
});

const fileName = 'myfile.png';
const downloadLink = document.createElement('a');
downloadLink.href = URL.createObjectURL(pngBlob);
downloadLink.download = fileName;
downloadLink.click();

Note that the output property of the png() function parameter can be used to directly generate a Blob object. If you use the value blob-promise the function returns a promise instead of a blog directly, so you can keep your UI non-blocking.

See the official cytoscape docs for more details.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743577594a4473789.html

相关推荐

  • javascript - cytoscape save graph as image by button - Stack Overflow

    I saw in the cytoscape.js tutorial that there are ways to represent the graph as image (png, jpg), but

    2天前
    50

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信