Skip to content

Commit 8aa347d

Browse files
committed
999358-hotfix: Added final changes.
1 parent 1b4adb2 commit 8aa347d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ Refer the below code snippet to draw a single frame monochrome TIFF image with J
993993
<th style="font-size:14px">Compression Applied</th>
994994
<tr>
995995
<td>Default</td>
996-
<td>All images</td>
996+
<td>Non-TIFF images</td>
997997
<td>Applies <b>Deflate (DEFLATE)</b> compression to monochrome, grayscale, and color images.</td>
998998
</tr>
999999
<tr>
@@ -1003,7 +1003,7 @@ Refer the below code snippet to draw a single frame monochrome TIFF image with J
10031003
</tr>
10041004
<tr>
10051005
<td>JBIG2</td>
1006-
<td>All images</td>
1006+
<td>Monochrome (bi-level)</td>
10071007
<td>Supported only in lossy mode and only for single-frame TIFF images.</td>
10081008
</tr>
10091009
</table>

Document-Processing/PDF/PDF-Library/javascript/Layers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ document.destroy();
217217
{% endhighlight %}
218218
{% endtabs %}
219219

220-
## Lock or Unlock layers
220+
## Lock or unlock layers
221221

222222
This example demonstrates how to lock or unlock layers in a PDF document using the `PdfLayer` class. Locking layers prevents users from toggling their visibility, ensuring that critical content remains displayed.
223223

Document-Processing/PDF/PDF-Library/javascript/Merge-Document.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ destination.destroy();
4545
{% endhighlight %}
4646
{% endtabs %}
4747

48-
4948
## Importing pages from multiple documents
5049

5150
This section demonstrates how to import multiple pages from a source PDF into a destination document at a specified position using the `importPageRange` method and `PdfPageImportOptions`. This is useful for merging selected page ranges from different PDFs into one document.

Document-Processing/PDF/PDF-Library/javascript/PDF-document.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ document.destroy();
6666
{% endhighlight %}
6767
{% endtabs %}
6868

69+
N> The PDF page is created using the default settings, which include A4 page size, portrait orientation, and 40 point page margins.
70+
6971
## Working with document properties
7072

7173
This example demonstrates how to create a PDF document, get and set its metadata properties such as title, author, subject, keywords, creator, producer, language, and dates, and then retrieve these properties using the `PdfDocumentInformation` class.

Document-Processing/PDF/PDF-Library/javascript/Text-Extraction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ document.destroy();
4848
{% endhighlight %}
4949
{% endtabs %}
5050

51-
## Extract Text from Specific Page Range in a PDF Document
51+
## Extract text from specific page range in a PDF document
5252

5353
This example demonstrates how to extract text from a PDF document by specifying a start and end page number. This approach allows you to retrieve text content from a defined range of pages for processing or analysis.
5454

@@ -124,9 +124,9 @@ document.destroy();
124124

125125
N> Layout based text extraction may take additional processing time when compared to the normal extraction mode.
126126

127-
## Text Extraction with Bounds
127+
## Text extraction with bounds
128128

129-
### Working with Lines
129+
### Working with lines
130130

131131
This example demonstrates how to extract text from a PDF page based on individual lines using the `extractTextLines` method. This approach provides a collection of `TextLine` objects, allowing precise access to text content line by line.
132132

Document-Processing/PDF/PDF-Library/javascript/Watermarks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ document.destroy();
237237
{% endhighlight %}
238238
{% endtabs %}
239239

240-
## Adding Watermark Annotation
240+
## Adding watermark annotation
241241

242242
This example demonstrates how to add a text watermark to an existing PDF document using the `PdfWatermarkAnnotation` class. The annotation allows you to specify the watermark text, color, opacity, and position to visually mark the document as confidential or draft.
243243

@@ -326,7 +326,7 @@ document.destroy();
326326
{% endhighlight %}
327327
{% endtabs %}
328328

329-
## Removing Watermark Annotation
329+
## Removing watermark annotation
330330

331331
Remove a watermark annotation from the page's annotation collection using the `PdfAnnotationCollection` of the loaded page. The following example demonstrates how to achieve this.
332332

0 commit comments

Comments
 (0)