diff --git a/File-Formats-toc.html b/File-Formats-toc.html
index 3b74881a7..c71069e19 100644
--- a/File-Formats-toc.html
+++ b/File-Formats-toc.html
@@ -1274,7 +1274,7 @@
Release Notes
- - 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
+ - 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
- 2019 Volume 3 - v17.3.0.*
diff --git a/File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Linux.md b/File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Linux.md
index b1e1fa403..ed078c592 100644
--- a/File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Linux.md
+++ b/File-Formats/PDF/Convert-HTML-To-PDF/Convert-HTML-to-PDF-in-Azure-Functions-Linux.md
@@ -78,7 +78,7 @@ Step 6: Add the following helper methods to copy and set permission to the Blink
private static string SetupBlinkBinaries(ExecutionContext executionContext)
{
- string blinkAppDir = Path.Combine(executionContext.FunctionAppDirectory, "BlinkBinariesLinux");
+ string blinkAppDir = Path.Combine(executionContext.FunctionAppDirectory, "bin/runtimes/linux/native");
string tempBlinkDir = Path.GetTempPath();
string chromePath = Path.Combine(tempBlinkDir, "chrome");
if (!File.Exists(chromePath))
diff --git a/File-Formats/PDF/Convert-HTML-To-PDF/features.md b/File-Formats/PDF/Convert-HTML-To-PDF/features.md
index db9b3e264..554e700cf 100644
--- a/File-Formats/PDF/Convert-HTML-To-PDF/features.md
+++ b/File-Formats/PDF/Convert-HTML-To-PDF/features.md
@@ -1802,108 +1802,6 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
N> Adjust the HTML margin top and bottom values according to the height of the HTML header and footer, as well as the margin settings.
-## Temporary path
-
-The Blink HTML converter launching Chrome browser to perform conversion. While launching Chrome browser, temporary files are created in a temporary folder.
-
-By default, HTML converter takes system temporary path (C:\Users\<>\AppData\Local\Temp or C:\Windows\Temp) to perform the conversion.
-
-The temporary path can be changed by using the [TempPath](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html#Syncfusion_HtmlConverter_BlinkConverterSettings_TempPath) property of [BlinkConverterSettings](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html). If this property is set, the converter uses the provided path to perform the conversion. Refer to the following code example.
-
-{% tabs %}
-
-{% highlight c# tabtitle="C# [Cross-platform]" %}
-
-//Initialize the HTML to PDF converter.
-HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
-
-BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings();
-//Set Temporary Path to generate temporary files
-blinkConverterSettings.TempPath = @"C:/HtmlConversion/Temp/";
-//Assign Blink converter settings to HTML converter
-htmlConverter.ConverterSettings = blinkConverterSettings;
-
-//Convert URL to PDF
-PdfDocument document = htmlConverter.Convert("https://www.google.com");
-FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
-//Save and close the PDF document.
-document.Save(fileStream);
-document.Close(true);
-
-{% endhighlight %}
-
-{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
-
-'Initialize the HTML to PDF converter.
-Dim htmlConverter As HtmlToPdfConverter = New HtmlToPdfConverter()
-
-Dim blinkConverterSettings As BlinkConverterSettings = New BlinkConverterSettings()
-'Set Temporary Path to generate temporary files
-blinkConverterSettings.TempPath = "C:/HtmlConversion/Temp/"
-'Assign Blink converter settings to HTML converter
-htmlConverter.ConverterSettings = blinkConverterSettings
-
-'Convert URL to PDF
-Dim document As PdfDocument = htmlConverter.Convert("https://www.google.com")
-'Save and close the PDF document
-document.Save("Output.pdf")
-document.Close(True)
-
-{% endhighlight %}
-
-{% endtabs %}
-
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Set-temporary-path-while-converting-HTML-to-PDF).
-
-## Blink path
-When converting HTML to a PDF document, the default reference to the blink binaries path eliminates the need for manual addition. Nonetheless, if you prefer to manually add the blink binaries path or reference it from a custom location, simply set the path of the BlinkBinaries folder to the [BlinkPath](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html#Syncfusion_HtmlConverter_BlinkConverterSettings_BlinkPath) property of [BlinkConverterSettings](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html).
-
-N> * The BlinkBinaries will be available in the HTMLConverter installed location ($SystemDrive\Program Files (x86)\Syncfusion\HTMLConverter\xx.x.x.xx\BlinkBinaries)
-N> * The BlinkBinaries also available in NuGet package installed location if you are using Blink HTML converter from NuGet packages.
-
-{% tabs %}
-
-{% highlight c# tabtitle="C# [Cross-platform]" %}
-
-//Initialize HTML to PDF converter.
-HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
-BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings();
-//Set Blink binaries path.
-blinkConverterSettings.BlinkPath = @"C:/HtmlConversion/BlinkBinaries/";
-//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 to save the PDF document.
-FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
-//Save and close the PDF document.
-document.Save(fileStream);
-document.Close(true);
-
-{% endhighlight %}
-
-{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
-
-'Initialize HTML to PDF converter.
-Dim htmlConverter As HtmlToPdfConverter = New HtmlToPdfConverter()
-Dim blinkConverterSettings As BlinkConverterSettings = New BlinkConverterSettings()
-'Set Blink binaries path.
-blinkConverterSettings.BlinkPath = "C:/HtmlConversion/BlinkBinaries/"
-'Assign Blink converter settings to HTML converter.
-htmlConverter.ConverterSettings = blinkConverterSettings
-'Convert URL to PDF document.
-Dim document As PdfDocument = htmlConverter.Convert("https://www.syncfusion.com")
-
-'Create file stream to save the PDF document.
-Dim fileStream As FileStream = New FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite)
-'Save and close the PDF document.
-document.Save(fileStream)
-document.Close(True)
-
-{% endhighlight %}
-
-{% endtabs %}
## Inject custom CSS
@@ -2052,4 +1950,107 @@ htmlConverter.Close()
{% endhighlight %}
+{% endtabs %}
+
+## Temporary path
+
+The Blink HTML converter launching Chrome browser to perform conversion. While launching Chrome browser, temporary files are created in a temporary folder.
+
+By default, HTML converter takes system temporary path (C:\Users\<>\AppData\Local\Temp or C:\Windows\Temp) to perform the conversion.
+
+The temporary path can be changed by using the [TempPath](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html#Syncfusion_HtmlConverter_BlinkConverterSettings_TempPath) property of [BlinkConverterSettings](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html). If this property is set, the converter uses the provided path to perform the conversion. Refer to the following code example.
+
+{% tabs %}
+
+{% highlight c# tabtitle="C# [Cross-platform]" %}
+
+//Initialize the HTML to PDF converter.
+HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
+
+BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings();
+//Set Temporary Path to generate temporary files
+blinkConverterSettings.TempPath = @"C:/HtmlConversion/Temp/";
+//Assign Blink converter settings to HTML converter
+htmlConverter.ConverterSettings = blinkConverterSettings;
+
+//Convert URL to PDF
+PdfDocument document = htmlConverter.Convert("https://www.google.com");
+FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
+//Save and close the PDF document.
+document.Save(fileStream);
+document.Close(true);
+
+{% endhighlight %}
+
+{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
+
+'Initialize the HTML to PDF converter.
+Dim htmlConverter As HtmlToPdfConverter = New HtmlToPdfConverter()
+
+Dim blinkConverterSettings As BlinkConverterSettings = New BlinkConverterSettings()
+'Set Temporary Path to generate temporary files
+blinkConverterSettings.TempPath = "C:/HtmlConversion/Temp/"
+'Assign Blink converter settings to HTML converter
+htmlConverter.ConverterSettings = blinkConverterSettings
+
+'Convert URL to PDF
+Dim document As PdfDocument = htmlConverter.Convert("https://www.google.com")
+'Save and close the PDF document
+document.Save("Output.pdf")
+document.Close(True)
+
+{% endhighlight %}
+
+{% endtabs %}
+
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Set-temporary-path-while-converting-HTML-to-PDF).
+
+## Blink path
+When converting HTML to a PDF document, the default reference to the blink binaries path eliminates the need for manual addition. Nonetheless, if you prefer to manually add the blink binaries path or reference it from a custom location, simply set the path of the BlinkBinaries folder to the [BlinkPath](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html#Syncfusion_HtmlConverter_BlinkConverterSettings_BlinkPath) property of [BlinkConverterSettings](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.BlinkConverterSettings.html).
+
+N> * The BlinkBinaries will be available in the HTMLConverter installed location ($SystemDrive\Program Files (x86)\Syncfusion\HTMLConverter\xx.x.x.xx\BlinkBinaries)
+N> * The BlinkBinaries also available in NuGet package installed location if you are using Blink HTML converter from NuGet packages.
+
+{% tabs %}
+
+{% highlight c# tabtitle="C# [Cross-platform]" %}
+
+//Initialize HTML to PDF converter.
+HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
+BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings();
+//Set Blink binaries path.
+blinkConverterSettings.BlinkPath = @"C:/HtmlConversion/BlinkBinaries/";
+//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 to save the PDF document.
+FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
+//Save and close the PDF document.
+document.Save(fileStream);
+document.Close(true);
+
+{% endhighlight %}
+
+{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
+
+'Initialize HTML to PDF converter.
+Dim htmlConverter As HtmlToPdfConverter = New HtmlToPdfConverter()
+Dim blinkConverterSettings As BlinkConverterSettings = New BlinkConverterSettings()
+'Set Blink binaries path.
+blinkConverterSettings.BlinkPath = "C:/HtmlConversion/BlinkBinaries/"
+'Assign Blink converter settings to HTML converter.
+htmlConverter.ConverterSettings = blinkConverterSettings
+'Convert URL to PDF document.
+Dim document As PdfDocument = htmlConverter.Convert("https://www.syncfusion.com")
+
+'Create file stream to save the PDF document.
+Dim fileStream As FileStream = New FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite)
+'Save and close the PDF document.
+document.Save(fileStream)
+document.Close(True)
+
+{% endhighlight %}
+
{% endtabs %}
\ No newline at end of file
diff --git a/File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md b/File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md
index 7e04677ea..f3303c374 100644
--- a/File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md
+++ b/File-Formats/PDF/Convert-HTML-To-PDF/troubleshooting.md
@@ -52,6 +52,7 @@ document.Save(fileStream);
document.Close(true);
{% endhighlight %}
+
@@ -461,56 +462,6 @@ blinkConverterSettings.CommandLineArguments.Add("--disable-setuid-sandbox");
-## OCR not working on Mac: Exception has been thrown by the target of an invocation
-
-
-| Issue
- |
-Syncfusion.Pdf.PdfException: Exception has been thrown by the target of an invocation" in the Mac machine.
- |
-
-
-| Reason
- |
-The problem occurs due to a mismatch in the dependency package versions on your Mac machine.
- |
-
-
-
-| Solution
- |
-To resolve this problem, you should install and utilize Tesseract 5 on your Mac machine. Refer to the following steps for installing Tesseract 5 and integrating it into an OCR processing workflow.
-
-1.Execute the following command to install Tesserat 5.
-
-{% highlight c# tabtitle="C#" %}
-
-brew install tesseract
-
-{% endhighlight %}
-
-
-If the "brew" is not installed on your machine, you can install it using the following command.
-
-{% highlight c# tabtitle="C#" %}
-
-/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-
-{% endhighlight %}
-
-
-
-2.Once Tesseract 5 is successfully installed, you can configure the path to the latest binaries by copying the location of the Tesseract folder and setting it as the Tesseract binaries path when setting up the OCR processor. Refer to the example code below:
-
-{% highlight c# tabtitle="C#" %}
-
-//Initialize the OCR processor by providing the path of tesseract binaries.
-using (OCRProcessor processor = new OCRProcessor("/opt/homebrew/Cellar/tesseract/5.3.2/lib"))
-
-{% endhighlight %}
- |
-
-
## ERROR:The specified module could not be found in windows server 2012 R2
@@ -558,6 +509,8 @@ Refer to the following package reference:

+## HTML conversion support in Azure
+
+
+## Failed to convert Webpage exception with Linux docker in Mac M1 machine.
+
+
+| Exception
+ |
+Failed to convert Webpage exception using Linux Docker in Mac M1 system environment.
+ |
+
+
+| Reason
+ |
+The existing x64-bit Blink binaries for Linux are not compatible with the x64 ARM Mac M1 system architecture with Linux Docker.
+ |
+
+
+
+| Solution
+ |
+
+To resolve this issue, we can install the chromium using the docker file and set the Blink Path to the location where chromium is installed.
+
+Docker File:
+{% tabs %}
+
+{% highlight}
+
+ FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
+
+ RUN apt-get update && apt-get install -y \
+
+ libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 \
+
+ libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 \
+
+ libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 \
+
+ libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
+
+ libnss3 libgbm1 chromium
+
+ WORKDIR /app
+
+ EXPOSE 80
+
+ EXPOSE 443
+
+{% endhighlight %}
+
+Code snippet:
+
+{% highlight}
+
+ BlinkConverterSettings settings = new BlinkConverterSettings();
+
+ //To utilize the Blink binaries from the arm64-based chromium installed using the docker file, execute the following command.
+
+ settings.BlinkPath = @"/usr/lib/chromium/chromium";
+
+
+
+{% endhighlight %}
+
+{% endtabs %}
+
|
\ No newline at end of file
diff --git a/File-Formats/PDF/Working-with-OCR/MAC.md b/File-Formats/PDF/Working-with-OCR/MAC.md
new file mode 100644
index 000000000..c7af6259d
--- /dev/null
+++ b/File-Formats/PDF/Working-with-OCR/MAC.md
@@ -0,0 +1,77 @@
+---
+title: Perform OCR on PDF and Image Files in Mac | Syncfusion
+description: Learn how to perform OCR on scanned PDF documents and images in WPF with different Tesseract versions using Syncfusion .NET OCR library.
+platform: file-formats
+control: PDF
+documentation: UG
+keywords: Assemblies
+---
+
+# Perform OCR in Mac
+
+The [Syncfusion .NET OCR library](https://www.syncfusion.com/document-processing/pdf-framework/net/pdf-library/ocr-process) used to extract text from scanned PDFs and images in the Mac application.
+
+## Steps to perform OCR on entire PDF document in Mac
+
+Step 1: Create a new .NET Core console application project.
+
+
+Step 2: Select the project version.
+
+Step 3: Install the [Syncfusion.PDF.OCR.Net.Core](https://www.nuget.org/packages/Syncfusion.PDF.OCR.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
+
+
+N> Starting with v16.2.0.x, if you reference Syncfusion assemblies from the trial setup or from the NuGet feed, you also have to add "Syncfusion.Licensing" assembly reference and include a license key in your projects. Refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to learn about registering the Syncfusion license key in your application to use our components.
+
+Step 4: Include the following Namespaces in the Program.cs file.
+{% tabs %}
+{% highlight c# tabtitle="C#" %}
+
+using Syncfusion.OCRProcessor;
+
+using Syncfusion.Pdf.Parsing;
+
+{% endhighlight %}
+
+{% endtabs %}
+
+Step 5: Add the following code sample to the *Program.cs* file to **Perform OCR in .NET Core application on Mac OS**.
+{% tabs %}
+
+{% highlight c# tabtitle="C#" %}
+
+//Initialize the OCR processor.
+using (OCRProcessor processor = new OCRProcessor())
+{
+ FileStream fileStream = new FileStream("Input.pdf", FileMode.Open, FileAccess.Read);
+ //Load a PDF document.
+ PdfLoadedDocument lDoc = new PdfLoadedDocument(fileStream);
+ //Set the OCR language to be processed.
+ processor.Settings.Language = Languages.English;
+ //Process OCR by providing the PDF document.
+ processor.PerformOCR(lDoc);
+ //Create memory stream.
+ MemoryStream stream = new MemoryStream();
+ //Save the document to the memory stream.
+ lDoc.Save(stream);
+ lDoc.Close();
+ //Set the position as '0'.
+ stream.Position = 0;
+ //Download the PDF document in the browser.
+ FileStreamResult fileStreamResult = new FileStreamResult(stream, "application/pdf");
+ fileStreamResult.FileDownloadName = "OCR.pdf";
+ return fileStreamResult;
+}
+
+{% endhighlight %}
+
+{% endtabs %}
+
+
+By executing the program, you will get a PDF document as follows.
+
+
+A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/OCR-csharp-examples/tree/master/WPF).
+
+Click [here](https://www.syncfusion.com/document-processing/pdf-framework/net) to explore the rich set of Syncfusion PDF library features.
+
diff --git a/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_Console.png b/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_Console.png
new file mode 100644
index 000000000..ee517f814
Binary files /dev/null and b/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_Console.png differ
diff --git a/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_NuGet_path.png b/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_NuGet_path.png
new file mode 100644
index 000000000..8fa9996bd
Binary files /dev/null and b/File-Formats/PDF/Working-with-OCR/OCR-Images/Mac_OS_NuGet_path.png differ
diff --git a/File-Formats/PDF/Working-with-OCR/Troubleshooting.md b/File-Formats/PDF/Working-with-OCR/Troubleshooting.md
index 411e369b5..44d8c02d4 100644
--- a/File-Formats/PDF/Working-with-OCR/Troubleshooting.md
+++ b/File-Formats/PDF/Working-with-OCR/Troubleshooting.md
@@ -78,6 +78,7 @@ The tesseract binaries path is TesseractBinaries/Windows, and the assemblies sho
An exception may occur due to the VC++ 2015 redistributable files missing in the machine where the OCR processor takes place.
|
+
| Solution |
Install the VC++ 2015 redistributable files in your machine to overcome an exception. So, please select both file and install it.
@@ -109,6 +110,7 @@ Please find the download link Visual C++ 2015 Redistributable file,
To resolve this issue, refer this link for more details.
|
+
## The OCR processor doesn't process languages other than English
@@ -157,3 +159,52 @@ By using the best tessdata, we can improve the OCR results. For more information
+
+## OCR not working on Mac: Exception has been thrown by the target of an invocation
+
+
+| Issue
+ |
+Syncfusion.Pdf.PdfException: Exception has been thrown by the target of an invocation" in the Mac machine.
+ |
+
+| Reason
+ |
+The problem occurs due to a mismatch in the dependency package versions on your Mac machine.
+ |
+
+
+| Solution
+ |
+To resolve this problem, you should install and utilize Tesseract 5 on your Mac machine. Refer to the following steps for installing Tesseract 5 and integrating it into an OCR processing workflow.
+
+1.Execute the following command to install Tesserat 5.
+
+{% highlight c# tabtitle="C#" %}
+
+brew install tesseract
+
+{% endhighlight %}
+
+
+If the "brew" is not installed on your machine, you can install it using the following command.
+
+{% highlight c# tabtitle="C#" %}
+
+/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
+
+{% endhighlight %}
+
+
+
+2.Once Tesseract 5 is successfully installed, you can configure the path to the latest binaries by copying the location of the Tesseract folder and setting it as the Tesseract binaries path when setting up the OCR processor. Refer to the example code below:
+
+{% highlight c# tabtitle="C#" %}
+
+//Initialize the OCR processor by providing the path of tesseract binaries.
+using (OCRProcessor processor = new OCRProcessor("/opt/homebrew/Cellar/tesseract/5.3.2/lib"))
+
+{% endhighlight %}
+ |
+
+
diff --git a/File-Formats/PDF/Working-with-Tagged-PDF.md b/File-Formats/PDF/Working-with-Tagged-PDF.md
index 83efa387d..40cfa9c29 100644
--- a/File-Formats/PDF/Working-with-Tagged-PDF.md
+++ b/File-Formats/PDF/Working-with-Tagged-PDF.md
@@ -1654,60 +1654,6 @@ To pass the full check accessibility, follow the below conventions while tagging
6. Tables must contain same number of columns in each row.
7. A list element must contain list item element (LI), and list item element can only contain label (Lbl) or body elements(LBody).
-## Tagged PDF support for converting HTML to PDF
-
-Essential PDF provides support to convert HTML to TaggedPDF by using the MSHTML rendering library.
-
-The Tagged PDF is a stylized use of PDF that builds the logical structure Framework. It defines a set of standard structure types and attributes that allows the page content (text, graphics, and images) to be extracted and reused. The contents are accessible to users with visual impairments.
-
-To convert HTML to Tagged PDF, you can use the [ConvertToTaggedPDF](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.HtmlConverter.html#Syncfusion_HtmlConverter_HtmlConverter_ConvertToTaggedPDF_Syncfusion_Pdf_PdfDocument_System_String_) method in [HtmlConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.HtmlConverter.HtmlConverter.html) class.
-
-The following code illustrates how to convert HTML to TaggedPDF.
-
-{% tabs %}
-
-{% highlight c# tabtitle="C# [Windows-specific]" %}
-
-//Creates a new PdfDocument
-PdfDocument document = new PdfDocument();
-
-//Creates a new instance of HtmlConverter class
-using (HtmlConverter html = new HtmlConverter())
-{
- //Enable JavaScript
- html.EnableJavaScript = true;
- //Converts to Tagged PDF
- html.ConvertToTaggedPDF(document, "http://www.google.com");
-}
-
-//Saves and closes the document
-document.Save("Sample.pdf");
-document.Close(true);
-
-{% endhighlight %}
-
-{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
-
-'Creates a new PdfDocument
-Dim document As New PdfDocument()
-
-'Creates a new instance of HtmlConverter class
-Using html As New HtmlConverter()
- 'Enables JavaScript
- html.EnableJavaScript = True
- 'Converts to Tagged PDF
- html.ConvertToTaggedPDF(document, "http://www.google.com")
-End Using
-
-'Saves and closes the document
-document.Save("Sample.pdf")
-document.Close(True)
-
-{% endhighlight %}
-
-{% endtabs %}
-
-N> Hyperlinks are not supported in tagged PDF.
## Converting Word document to Tagged PDF
diff --git a/File-Formats/Presentation/Presentation-to-image.md b/File-Formats/Presentation/Presentation-to-image.md
index c90a9bf8b..5f7b85b9d 100644
--- a/File-Formats/Presentation/Presentation-to-image.md
+++ b/File-Formats/Presentation/Presentation-to-image.md
@@ -314,7 +314,7 @@ End Using
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/PPTX-to-Image-conversion/Based-on-Entrance-animation-effects/.NET).
-T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material).
+T> With this, you can showcase the converted images as a slideshow in your [custom PowerPoint Viewer](https://ej2.syncfusion.com/aspnetcore/PowerPoint/AnimationConverter#/material).
## UWP
diff --git a/File-Formats/Release-Notes/v23.1.38.md b/File-Formats/Release-Notes/v23.1.38.md
new file mode 100644
index 000000000..17f603210
--- /dev/null
+++ b/File-Formats/Release-Notes/v23.1.38.md
@@ -0,0 +1,37 @@
+---
+title : Essential Studio for File Formats Weekly Nuget Release Release Notes
+description : Essential Studio for File Formats Weekly Nuget Release Release Notes
+platform : file-formats
+documentation: ug
+---
+
+# Essential Studio for File Formats Release Notes
+
+{% include release-info.html date="September 26, 2023" version="v23.1.38" %}
+
+## DocIO
+
+* [UWP Release Notes](/uwp/release-notes/v23.1.38#docio){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v23.1.38#docio){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v23.1.38#docio){:target="_blank"}
+
+
+## PDF
+
+* [UWP Release Notes](/uwp/release-notes/v23.1.38#pdf){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v23.1.38#pdf){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v23.1.38#pdf){:target="_blank"}
+
+
+## Presentation
+
+* [Windows Forms Release Notes](/windowsforms/release-notes/v23.1.38#presentation){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v23.1.38#presentation){:target="_blank"}
+* [UWP Release Notes](/uwp/release-notes/v23.1.38#presentation){:target="_blank"}
+
+
+## XlsIO
+
+* [UWP Release Notes](/uwp/release-notes/v23.1.38#xlsio){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v23.1.38#xlsio){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v23.1.38#xlsio){:target="_blank"}
\ No newline at end of file