Tag

Tag: pdf library

Try SelectPdf PDF Library for .NET. Code samples in C# and VB.NET are available, as well as ASP.NET, MVC, Azure and many more.

selectpdf FAQ - PDF Library

How to fix: Conversion failure. Could not find ‘Select.Html.dep’.

(Updated in December 2016). SelectPdf Html To Pdf Converter needs 2 files to work. They are different for the 2 versions that we offer: Select.Pdf Library for .NET – Commercial Edition Select.Pdf for .NET requires the .NET assembly Select.Pdf.dll and if the html to converter is used, an additional file called Select.Html.dep. This file, because […]

selectpdf HTML to PDF Converter

Benefits of Using a HTML to PDF Converter

People need to access web pages on a regular basis. There are some pages which you may want to refer to on a daily basis. Going to the web page all the time may not make sense. If you have to use it daily, it makes sense to save it in the form of a […]

selectpdf HTML to PDF Converter Online

HTML to PDF Online Converter – An Easy Application for Handling Office Documents

I am a proud executive of an online converter that helps people to convert their HTML documents into PDF very conveniently. Our wonderful professional journey took off when we observed consumers complaining about the conversion software available for the purpose. Many found it very difficult to work on an HTML file without converting it. Conversion […]

selectpdf PDF LIBRARY for .NET, HTML to PDF Library

‘Hello World’ from SelectPdf

It’s very easy to use Select.Pdf SDK for .NET. Take a look at the simple code below. SelectPdf.PdfDocument doc = new SelectPdf.PdfDocument(); SelectPdf.PdfPage page = doc.AddPage(); SelectPdf.PdfFont font = doc.AddFont(SelectPdf.PdfStandardFont.Helvetica); font.Size = 20; SelectPdf.PdfTextElement text = new SelectPdf.PdfTextElement(50, 50, "Hello world!", font); page.Add(text); doc.Save("test.pdf"); doc.Close();