Skip to content

Commit f72ae9f

Browse files
Merge pull request #1802 from Syncfusion-Content/hotfix/hotfix-v24.1.41
DOCINFRA-2341_merged_using_automation
2 parents 440813a + eef0a34 commit f72ae9f

11 files changed

+27
-4152
lines changed

File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-App-Service-Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public ActionResult ExportToPDF()
120120
//Set command line arguments to run without sandbox.
121121
settings.CommandLineArguments.Add("--no-sandbox");
122122
settings.CommandLineArguments.Add("--disable-setuid-sandbox");
123-
//Assign WebKit settings to the HTML converter
123+
//Assign BlinkConverter settings to the HTML converter
124124
htmlConverter.ConverterSettings = settings;
125125
//Convert HTML string to PDF
126126
PdfDocument document = htmlConverter.Convert("http://www.syncfusion.com");

File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-App-Service-Windows.md

Lines changed: 0 additions & 125 deletions
This file was deleted.

File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Step 5: Add the following code example in the Function1 class to convert HTML to
5858
settings.CommandLineArguments.Add("--no-sandbox");
5959
settings.CommandLineArguments.Add("--disable-setuid-sandbox");
6060
settings.BlinkPath = blinkBinariesPath;
61-
//Assign WebKit settings to the HTML converter
61+
//Assign BlinkConverter settings to the HTML converter
6262
htmlConverter.ConverterSettings = settings;
6363
//Convert URL to PDF
6464
PdfDocument document = htmlConverter.Convert(url);

File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Windows.md

Lines changed: 0 additions & 138 deletions
This file was deleted.

File-Formats/PDF/Convert-HTML-To-PDF/IE.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -327,18 +327,6 @@ document.Close(True)
327327

328328
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/IE/Convert-HTML-to-PDF-with-PDFA-conformance).
329329

330-
## Limitations in the IE Rendering Engine
331-
332-
Syncfusion’s IE HTML to PDF converter relied on Microsoft’s MSHTML library to do the conversion from HTML to PDF. The actual conversion happens in two steps.
333-
334-
* Convert HTML into a Metafile.
335-
* Rendering the Metafile to PDF.
336-
337-
The main advantage of this kind of conversion is that the text rendered remains searchable in PDF.
338-
With version 9 of Internet Explorer, Microsoft started using hardware acceleration to produce bitmap images instead of metafiles, completely removing the ability to render selectable or searchable text within PDF. Users can work around the problem by making some registry changes, but may not be satisfied with the result, so a better alternative was needed. Hence a new converter based on the <b>WebKit renderer</b> was created.
339-
The WebKit rendered document contains vector graphics instead of scalar images. This reduces file size and allows users to perform various operations such as text search, selection, and clipboard copy. Apart from overcoming the limitations in the Internet Explorer rendering engine, the new WebKit render also provides better support to render HTML5, CSS3, and SVG content.
340-
341-
342330
## Troubleshooting
343331

344332
<table>

0 commit comments

Comments
 (0)