Skip to content

Commit bbc7a36

Browse files
1009185: Resolve the CI failures
1 parent e5b938b commit bbc7a36

11 files changed

Lines changed: 18 additions & 137 deletions

Document-Processing/PDF/PDF-Viewer/angular/form-filling.md

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

Document-Processing/PDF/PDF-Viewer/angular/how-to/add-header-value.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,4 @@ export class AppComponent {
8282
{% endhighlight %}
8383
{% endtabs %}
8484

85-
See the sample [how to add custom headers in AjaxRequestSettings](https://stackblitz.com/edit/angular-pfdpfdzq-o4b3dlur?file=src%2Fapp.component.html,src%2Fapp.component.ts,node_modules%2F%40syncfusion%2Fej2-pdfviewer%2Fsrc%2Fpdfviewer%2Fpdfviewer-model.d.ts,src%2Findex.html)
86-
Notes
85+
See the sample [how to add custom headers in AjaxRequestSettings](https://stackblitz.com/edit/angular-pfdpfdzq-o4b3dlur?file=src%2Fapp.component.html,src%2Fapp.component.ts,node_modules%2F%40syncfusion%2Fej2-pdfviewer%2Fsrc%2Fpdfviewer%2Fpdfviewer-model.d.ts,src%2Findex.html)

Document-Processing/PDF/PDF-Viewer/angular/how-to/delete-annotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ deleteAnnotationbyId() {
3232
}
3333
```
3434

35-
Find the StackBlitz sample demonstrating this flow here: https://stackblitz.com/edit/angular-pfuexf?file=app.component.ts
35+
Find the sample [how to delete a specific annotation using deleteAnnotationById](https://stackblitz.com/edit/angular-pfuexf?file=app.component.ts)

Document-Processing/PDF/PDF-Viewer/angular/how-to/export-as-image.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ domainurl: ##DomainURL##
1212

1313
The PDF Viewer component can export pages as Base64-encoded image strings using the `exportAsImage()` method (single page) and `exportAsImages()` method (page range). The examples below demonstrate single-page export, range export, and how to specify a custom image size.
1414

15-
The PDF Viewer library allows you to export specified pages as a Base64-encoded image string using the **exportAsImage()** method and exporting a range of pages as Base64-encoded image strings using the **exportAsImages()** method.
16-
1715
The following steps are used to exportAsImage.
1816

1917
**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started) to create a simple PDF Viewer sample.

Document-Processing/PDF/PDF-Viewer/angular/how-to/extract-text.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ domainurl: ##DomainURL##
1212

1313
The `extractText` method retrieves text content and, optionally, positional data for elements on one or more pages. It returns a Promise that resolves to an object containing extracted `textData` (detailed items with bounds) and `pageText` (concatenated plain text).
1414

15-
Parameters overview:
15+
**Parameters overview:**
1616

1717
- `startIndex` — Starting page index (0-based).
1818
- `endIndex` or options — Either the ending page index for a range extraction, or an options object specifying extraction criteria for a single page.
1919
- `options` (optional) — Extraction options such as `TextOnly` or `TextAndBounds` to control whether bounds are included.
2020

21-
Returned object shape (example):
21+
**Returned object shape (example):**
2222

2323
- `textData` — Array of objects describing extracted text items, including bounds and page-level text.
2424
- `pageText` — Concatenated plain text for the specified page(s).
2525

26-
Usage notes:
26+
### Usage of extractText in Syncfusion PDF Viewer Control
2727

28-
- The sample code in the repository demonstrates both single-page and range extraction; inspect returned objects to handle text and bounds as required.
28+
Here is an example that demonstrates how to use the extractText method:
2929

3030
```ts
3131
import { Component, OnInit } from '@angular/core';

Document-Processing/PDF/PDF-Viewer/angular/how-to/load-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ load_2() {
4646
}
4747
```
4848

49-
Find the sample: how to load a PDF document dynamically on StackBlitz
49+
Find the Sample, [how to load the PDF document dynamically](https://stackblitz.com/edit/angular-btme9m-7nzzyd?devtoolsheight=33&file=app.component.ts)
5050

5151
[View sample in GitHub](https://github.com/SyncfusionExamples/angular-pdf-viewer-examples/tree/master/Save%20and%20Load/Load%20PDF%20at%20runtime%20from%20base64%20string%20or%20filename)

Document-Processing/PDF/PDF-Viewer/angular/how-to/resolve-unable-to-find-an-entry-point-error.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ domainurl: ##DomainURL##
1010

1111
# Resolve "Unable to find an entry point named FPDFText_GetCharAngle" error
1212

13-
This error commonly occurs when the web service attempts to load a native Pdfium binary that is missing, incompatible, or from an older Pdfium build. The symptom is often a failing web service (for example, the service does not respond) and an error visible in the browser Network tab. Typical native Pdfium filenames by platform are:
13+
From the release of version **21.1.0.35 (2023 Volume 1)** of Essential Studio<sup style="font-size:70%">&reg;</sup>, the Pdfium package has been upgraded to improve various functionalities like text search, text selection, rendering, and even performance. If you are updating your project to this version of the Syncfusion<sup style="font-size:70%">&reg;</sup> PDF Viewer, you may encounter the **"Web-Service is not listening"** error. The Network tab can help you identify the root cause of the issue, which is typically caused by an old version of pdfium assembly being referenced in the local web service project. Below are the assemblies to be referred to in the respective operating systems.
1414

1515
- Windows: `pdfium.dll`
1616
- Linux: `libpdfium.so`
1717
- macOS: `libpdfium.dylib`
1818

19-
Root causes to check first:
19+
## To solve this issue, you should follow the below steps
2020

2121
- An outdated or mismatched native Pdfium binary deployed with the web service (different version or built for a different architecture).
2222
- A missing native library in the published output.

Document-Processing/PDF/PDF-Viewer/angular/how-to/show-custom-stamp-item.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
22
layout: post
33
title: Displaying Custom stamp Items in Angular PDF Viewer|Syncfusion.
4-
title: Display custom stamp items in Angular PDF Viewer
5-
description: Configure the custom stamp dropdown to show custom images or stamps in the Angular PDF Viewer; guidance on Base64, supported formats, and providers.
4+
description: Learn how to display custom items in the custom stamp Dropdown in Syncfusion Angular PDF Viewer component of Syncfusion Essential JS 2 and more.
65
platform: document-processing
76
control: PDF Viewer
87
documentation: ug
9-
domainurl:
8+
domainurl: ##DomainURL##
109
---
1110

1211
# Display custom stamp items in the custom stamp dropdown

Document-Processing/PDF/PDF-Viewer/angular/how-to/signatureselect-signatureunselect.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@ public signatureUnselect(args: any): void {
4141
console.log('Signature unselected:', args);
4242
}
4343
```
44+
The [signatureSelect](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/signatureSelectEventArgs/) and [signatureUnselect](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/signatureUnselectEventArgs/) events in Syncfusion<sup style="font-size:70%">&reg;</sup> PDF Viewer offer robust options for managing the state of handwritten signatures within your application. By handling these events, developers can create a more interactive and dynamic user experience, responding programmatically to signature selection and unselection.
4445

4546
[View sample in GitHub](https://github.com/SyncfusionExamples/angular-pdf-viewer-examples)

Document-Processing/PDF/PDF-Viewer/angular/how-to/unload-document.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ domainurl: ##DomainURL##
1212

1313
The PDF Viewer provides the [unload()](https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/#unload) method to remove the currently loaded PDF from the viewer instance. Use this API to free memory or reset the viewer when navigating between documents or closing the viewer.
1414

15-
Example:
15+
The following steps are used to unload the PDF document programmatically.
16+
17+
**Step 1:** Follow the steps provided in the [link](https://help.syncfusion.com/document-processing/pdf/pdf-viewer/angular/getting-started) to create a simple PDF Viewer sample.
18+
19+
**Step 2:** Add the following code snippet to perform the unload operation.
1620

1721
```html
1822
<button (click)="unload()">Unload Document</button>

0 commit comments

Comments
 (0)