Designed to help you to convert any complex HTML pages saturated by CSS and Javascript to PDF documents. - Convert HTML to PDF - Get screenshot from HTML - Convert multipage-TIFF to PDF - Generate PDF from JPEG, PNG, GIF, Bitmap, TIFF - Create PDF from pack of images at once, like a Photo Gallery - Compatible on multiple platforms, such as Windows, macOS, and Linux - Deploy to Azure and AWS Requires only .NET Framework 4.6.2 or higher. Can be used in .NET 6.0 and higher. Absolutely standalone library.
License
—
Deps
53
Install Size
—
Vulns
✓ 0
Published
Feb 20, 2026
$ dotnet add package SautinSoft.PdfVision

SautinSoft.PdfVision is .NET assembly (SDK) which gives API to convert HTML, ASPX to PDF and Image, JPG, Multipages TIFF to PDF.
Are you ready to give PDF Vision .NET a try? Simply execute Install-Package sautinsoft.pdfvision from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have PDF Vision .NET and want to upgrade the version, please execute Update-Package sautinsoft.pdfvision to get the latest version.
string inpFile = Path.GetFullPath(@"..\..\Sample.html");
string outFile = new FileInfo("Result.pdf").FullName;
PdfVision v = new PdfVision();
v.ConvertHtmlToPdf(inpFile, outFile);
string inpFile = Path.GetFullPath(@"..\..\image-jpeg.jpg");
string outFile = new FileInfo(@"Result.pdf").FullName;
PdfVision v = new PdfVision();
ImageToPdfOptions options = new ImageToPdfOptions();
v.ConvertImageToPdf(new string[] {inpFile}, outFile, options);
string inpFile = Path.GetFullPath(@"..\..\Sample.html");
string outFile = new FileInfo("Result.png").FullName;
PdfVision v = new PdfVision();
ScreenshotOptions options = new ScreenshotOptions();
v.GetScreenshot(inpFile, outFile, options);