SeViGo API
You can use SeViGo API for free. It's simple. Just register your client and use it!
Documentation
Step 1
Registration
Register your API client to obtain your API key
Step 2
Use our C# NuGet package for API calls or...
Step 2a
Call converter endpoint - with multipart form data content
POST https://api.sevigo.eu/converter
Fields:
ExportType
- file type that you want your SVG to be converted to. Allowed types are:
- PNG
- EPS
- EMF
- WMF
SvgContent
- content of your SVG file to convert - this is string content
Example request
POST /converter/ HTTP/1.1
Host: https://api.sevigo.eu
SEVIGO-KEY: <your API key>
Content-Length: <content length>
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="SvgContent"
<Content of your SVG file>
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="ExportType"
PNG
------WebKitFormBoundary7MA4YWxkTrZu0gW--