Need a help!.
I have the dynamic image base64 strings and need to add those images into the visio diagram without vss.
Need a help!.
I have the dynamic image base64 strings and need to add those images into the visio diagram without vss.
@esakki2092
Please refer to the following documents:
Please refer to the following code snippet:
string base64text = “”;
byte[] binData = Convert.FromBase64String(base64text);
MemoryStream stream;
using (stream = new MemoryStream(binData))
{
double pinX = 1;
double pinY = 1;
double width = 5;
double hieght = 5;
id = vsdDiagram.Pages[0].AddShape(pinX, pinY, width, hieght, stream);
}
Thanks.
Hi,
Thanks for your reply. Can I have the same code in java?
Hi ,
Thanks for your reply , now its working…But still i have some challenges,
How can I fix these issues?
Request your kind help…
Screenshot from 2022-12-14 17-40-12.png (179.3 KB)
Please share the complete sample code snippet for our reference along with the sample files you used. We will further proceed to assist you accordingly.