Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select.pdf Avoid displaying 'Demo Version - Select.Pdf SDK'

Tags:

asp.net

nuget

I successfully installed NuGet package 'Select.pdf". When I run the website, I see "Demo Version - Select.Pdf SDK" displaying at the end, What can I do to avoid this ? It's free tool, available from NuGet.

SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
SelectPdf.PdfDocument doc = converter.ConvertUrl("http://www.cnn.com");
doc.Save(Response, false, "test.pdf");
doc.Close();
like image 883
dotNETEngineer Avatar asked Sep 03 '25 15:09

dotNETEngineer


1 Answers

You have installed the wrong package (Full Version):

Select.Pdf

The free (Community) version is only the Html Converter:

Select.HtmlToPdf

Keep in mind, that the free version only supports up to 5 pages.

like image 142
Christian Gollhardt Avatar answered Sep 05 '25 16:09

Christian Gollhardt