You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a wpf app that would upload a svg file to your webpage and capture result, and then later format it as per my user needs and display in a window. For that i need the link behind upload that my app would upload the file to and i have been unable to find that link so far. There is another similar project for which i found the link but the main reason i want to use yours is because of the options you give at the bottom, like "bake transform into paths" which is very useful. It would be great if you could provide that link. Thanks
The text was updated successfully, but these errors were encountered:
I want to be able to upload a svg file to your site and capture output. I am using the code below to do it with the other svg to vector converter i metioned earlier. But i havent been able to figure out how to do the same with your project.
//This link is for the other project. This where where the file is uploaded when user drops a file on the drag and drop area
String uriString = "http://193.124.64.166/api/svg2vd/v1";
// Create a new WebClient instance.
WebClient myWebClient = new WebClient();
//Filepath contains the path of the .svg file on my local machine
string fileName = FilePath;
// Upload the file to the URI.
var responseArray = myWebClient.UploadFile(uriString, "POST", fileName);
// Decode and display the response.
// ProcessData is my fucntion that formats the data returned by the WebClient
string[] results = VectorDataProcess.ProcessData(System.Text.Encoding.ASCII.GetString(responseArray));
I am developing a wpf app that would upload a svg file to your webpage and capture result, and then later format it as per my user needs and display in a window. For that i need the link behind upload that my app would upload the file to and i have been unable to find that link so far. There is another similar project for which i found the link but the main reason i want to use yours is because of the options you give at the bottom, like "bake transform into paths" which is very useful. It would be great if you could provide that link. Thanks
The text was updated successfully, but these errors were encountered: