Hi is there a way where I can use the Diagram.makeImage to give me a high resolution image , so that the texts are readable , the resolution doesnt matter , it can be as high as high as possible .
my imageData code
var img = myDiagram.makeImage({
background: “white”, //NO I18n
scale:1,
maxSize :new go.Size(Infinity,Infinity)
});
this gives me a complete image but the size of the image is small so that I am not able to read text.
I would prefer a image and not a SVG, thanks