The documentation is designed to help you to implement the features on your side. ByteScout PDF SDK can convert SVG to PDF. It can be used from VB.NET. ByteScout PDF SDK is the SDK for pdf documents generation, modification and updates. Can also generate and fill PDF forms. Provides support for text (fonts, style, size, font family), layers, pdf form fields, vector and raster drawings.
The SDK samples like this one below explain how to quickly make your application do convert SVG to PDF in VB.NET with the help of ByteScout PDF SDK. This VB.NET sample code is all you need for your app. Just copy and paste the code, add references (if needs to) and you are all set! This basic programming language sample code for VB.NET will do the whole work for you to convert SVG to PDF.
ByteScout PDF SDK free trial version is available on our website. VB.NET and other programming languages are supported.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.Drawing.Printing Imports Bytescout.PDF.Converters Module Module1 <STAThread> Sub Main() ' HtmlToPdfConverter can convert HTML files with SVG content, or SVG files directly. Using converter As New HtmlToPdfConverter() converter.PageSize = PaperKind.A4 converter.ConvertHtmlToPdf("drawing.svg", "result.pdf") ' You can also pass a link instead of the input file: 'converter.ConvertHtmlToPdf("http://somesite.com/files/drawing.svg", "result.pdf") End Using ' Open result file in default PDF viewer Process.Start("result.pdf") End Sub End Module
60 Day Free Trial or Visit ByteScout PDF SDK Home Page
Explore ByteScout PDF SDK Documentation
Explore Samples
Sign Up for ByteScout PDF SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout PDF SDK Home Page
Explore ByteScout PDF SDK Documentation
Explore Samples
Sign Up for ByteScout PDF SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: