Skip to content

Commit

Permalink
Sandbox comments is added
Browse files Browse the repository at this point in the history
  • Loading branch information
chinnumuniyappan authored Dec 12, 2024
1 parent 02f336b commit e6f9d38
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

//Initialize HTML to PDF converter.
HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
//Create blink converter settings
BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings();
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
//Set command line arguments to run without the sandbox.
blinkConverterSettings.CommandLineArguments.Add("--no-sandbox");
blinkConverterSettings.CommandLineArguments.Add("--disable-setuid-sandbox");
}
//Assign Blink converter settings to HTML converter.
htmlConverter.ConverterSettings = blinkConverterSettings;
//Convert URL to PDF document.
PdfDocument document = htmlConverter.Convert("https://www.syncfusion.com");
//Create file stream.
Expand All @@ -15,4 +25,4 @@
document.Save(fileStream);
}
//Close the document.
document.Close(true);
document.Close(true);

0 comments on commit e6f9d38

Please sign in to comment.