We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a98bccc commit 49bddb7Copy full SHA for 49bddb7
HTML to PDF/Blink/Accessible_PDF_In_HTML_to_PDF/.NET/Accessible PDF/Program.cs
@@ -10,7 +10,7 @@
10
//Assign the BlinkConverterSettings to the ConverterSettings property of HtmlToPdfConverter.
11
htmlConverter.ConverterSettings = settings;
12
//Convert URL to PDF.
13
-PdfDocument document = htmlConverter.Convert("file:///D:/PDF-Examples/HTML%20to%20PDF/Blink/Accessible_PDF_In_HTML_to_PDF/.NET/Accessible%20PDF/Data/Input.html");
+PdfDocument document = htmlConverter.Convert(Path.GetFullPath(@"Data/Input.html"));
14
15
//Save the PDF document
16
document.Save(Path.GetFullPath(@"Output/Output.pdf"));
0 commit comments