Skip to content

Commit e16e718

Browse files
committed
997098-dev: Resolved given feedback.
1 parent b666aed commit e16e718

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

Document-Processing/PDF/PDF-Library/NET/Supported-and-Unsupported-Features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Supported and Unsupported Features | Syncfusion
2+
title: Supported and Unsupported PDF Features | Syncfusion
33
description: This section explains about features available in Essential PDF and their availability in different platforms.
44
platform: document-processing
55
control: PDF
66
documentation: UG
77
---
8-
# Supported and Unsupported Features
8+
# Supported and Unsupported PDF Features
99

1010
The following table shows the various features available in the Essential<sup>&reg;</sup> PDF and their availability in different platforms.
1111

Document-Processing/PDF/PDF-Library/NET/Working-with-OCR/Features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ N> The OCR Engine Mode is supported only in the Tesseract version 4.0 and above.
10661066

10671067
## Performing OCR with different OCR Image Enhancement Mode
10681068

1069-
The `ImageEnhancementMode` property is used to set the ocr image enhancement modes. By default, OCR works with the `EnhanceForRecognitionOnly` image enhancement mode. Kindly refer to the following code example to perform OCR with different ocr image enhancement segmentation mode.
1069+
The `ImageEnhancementMode` property is used to set the OCR image enhancement modes. By default, OCR works with the `EnhanceForRecognitionOnly` image enhancement mode. Kindly refer to the following code example to perform OCR with different OCR image enhancement segmentation mode.
10701070

10711071
The following table describes the available OCR image enhancement modes and their respective purposes.
10721072

Document-Processing/PDF/PDF-Library/NET/Working-with-OCR/Working-with-OCR.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Windows Forms, WPF, ASP.NET, and ASP.NET MVC
147147
<li>Syncfusion.PdfImaging.Portable.dll</li>
148148
<li>Syncfusion.Pdf.Portable.dll</li>
149149
<li>Syncfusion.Compression.Portable.dll</li>
150-
<li>{{'[SkiaSharp](https://www.nuget.org/packages/SkiaSharp/3.119.2-preview.1)'| markdownify }} package</li>
150+
<li>{{'[SkiaSharp](https://www.nuget.org/packages/SkiaSharp/3.119.1)'| markdownify }} package</li>
151151
<li>Syncfusion.ImagePreProcessor.Portable.dll</li>
152152
</ul>
153153
</td>
@@ -162,7 +162,7 @@ Windows Forms, WPF, ASP.NET, and ASP.NET MVC
162162
<li>Syncfusion.PdfImaging.NET.dll</li>
163163
<li>Syncfusion.Pdf.NET.dll</li>
164164
<li>Syncfusion.Compression.NET.dll</li>
165-
<li>{{'[SkiaSharp](https://www.nuget.org/packages/SkiaSharp/3.119.2-preview.1)'| markdownify }} package</li>
165+
<li>{{'[SkiaSharp](https://www.nuget.org/packages/SkiaSharp/3.119.1)'| markdownify }} package</li>
166166
<li>Syncfusion.ImagePreProcessor.NET.dll</li>
167167
</ul>
168168
</td>

Document-Processing/PDF/PDF-Library/NET/Working-with-PDF-Conformance.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,9 +1234,10 @@ document.ColorSpace = PdfColorSpace.CMYK;
12341234
PdfGraphics graphics = page.Graphics;
12351235
//Create a solid brush.
12361236
PdfBrush brush = new PdfSolidBrush(Color.Black);
1237+
//Load the TrueType font from the local file.
1238+
FileStream fontStream = new FileStream("Arial.ttf", FileMode.Open, FileAccess.Read);
12371239
//Set the font.
1238-
Font font = new Font("Arial",20f, FontStyle.Regular);
1239-
PdfFont pdfFont = new PdfTrueTypeFont(font, FontStyle.Regular, 12, false, true);
1240+
PdfFont font = new PdfTrueTypeFont(fontStream, 14);
12401241
//Draw the text.
12411242
graphics.DrawString("Hello world!", pdfFont, brush, new PointF(20, 20));
12421243

@@ -1439,8 +1440,9 @@ static void LoadedDocument_SubstituteFont(object sender, PdfFontEventArgs args)
14391440

14401441
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/PDF%20Conformance/Get-PDF-to-PDFA-conversion-progress).
14411442

1442-
N> 1. CMYK color space images and symbolic fonts are not supported.
1443-
N> 2. From the .NET Framework 3.5 version, the Essential<sup>&reg;</sup> PDF is compatible with the PDF to PDF/A conversion.
1443+
N> 1. Converting PDF to PDF/X-1a conformance document is not supported.
1444+
N> 2. CMYK color space images and symbolic fonts are not supported.
1445+
N> 3. From the .NET Framework 3.5 version, the Essential<sup>&reg;</sup> PDF is compatible with the PDF to PDF/A conversion.
14441446

14451447
## Font subsetting during PDF to PDF/A conversion
14461448

@@ -1827,7 +1829,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
18271829
<tr>
18281830
<td>PDF/X-1a</td>
18291831
<td>Yes</td>
1830-
<td>Yes</td>
1832+
<td>No</td>
18311833
</tr>
18321834
<tr>
18331835
<td>PDF/A-2a</td>

0 commit comments

Comments
 (0)