Skip to content

Commit bb3bccf

Browse files
Merge pull request #1585 from syncfusion-content/983454-imageHot
983454: Add note in UG exported PDF Document editor
2 parents aaf5c15 + 793690c commit bb3bccf

File tree

7 files changed

+55
-40
lines changed

7 files changed

+55
-40
lines changed

Document-Processing/Word/Word-Processor/angular/how-to/export-document-as-pdf.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ In this article, we are going to see how to export the document as PDF format. Y
1717
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
20-
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
21-
* There is one limitation we can’t search the text because we are exporting the pdf as image.
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
22+
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
2223

2324
The following example code illustrates how to export the document as pdf in client-side.
2425

Document-Processing/Word/Word-Processor/asp-net-core/how-to/export-document-as-pdf.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export PDF Document in Document Editor Component |Syncfusion
3+
title: Export PDF in Document Editor Component |Syncfusion
44
description: Learn here all about export document as PDF in Syncfusion Document Editor component of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export Document As PDF
@@ -14,9 +14,12 @@ This article explains how to export the document as PDF format. You can export t
1414

1515
## Export the document as PDF in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as PDF using `exportAsImage` API. Here, all pages will be converted to image and inserted as PDF pages (works like print as PDF). There is one limitation, the text can't be searched because the PDF is exported as image.
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as PDF using `exportAsImage` API. Here, all pages will be converted to image and inserted as PDF pages (works like print as PDF).
1818

19-
N> You can install the PDF export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
19+
>Note:
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
22+
* You can install the PDF export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
2023

2124

2225
{% tabs %}

Document-Processing/Word/Word-Processor/asp-net-mvc/how-to/export-document-as-pdf.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export PDF Document in ASP.NET MVC Document Editor Component |Syncfusion
3+
title: Export PDF in ASP.NET MVC Document Editor Component |Syncfusion
44
description: Learn here all about export document as PDF in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export Document As PDF
@@ -14,9 +14,12 @@ This article explains how to export the document as PDF format. You can export t
1414

1515
## Export the document as PDF in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as PDF using `exportAsImage` API. Here, all pages will be converted to image and inserted as PDF pages (works like print as PDF). There is one limitation, the text can't be searched because the PDF is exported as image.
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as PDF using `exportAsImage` API. Here, all pages will be converted to image and inserted as PDF pages (works like print as PDF).
1818

19-
N> You can install the PDF export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
19+
>Note:
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
22+
* You can install the PDF export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
2023

2124

2225
{% tabs %}
@@ -82,4 +85,4 @@ public void ExportPdf([FromBody] SaveParameter data)
8285
```
8386

8487

85-
Get the complete working sample in this [`link`](https://github.com/SyncfusionExamples/Export-document-as-PDF-in-Document-Editor/).
88+
Get the complete working sample in this [`link`](https://github.com/SyncfusionExamples/Export-document-as-PDF-in-Document-Editor/).

Document-Processing/Word/Word-Processor/javascript-es5/how-to/export-document-as-pdf.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export document as pdf in JavaScript (ES5) Document editor control | Syncfusion
3+
title: Export PDF in JavaScript (ES5) Document editor | Syncfusion
44
description: Learn here all about Export document as pdf in Syncfusion JavaScript (ES5) Document editor control of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export document as pdf
@@ -10,15 +10,16 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in JavaScript (ES5) Document editor control
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
2022
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
21-
* There is one limitation we can’t search the text because we are exporting the pdf as image.
2223

2324
The following example code illustrates how to export the document as pdf in client-side.
2425

@@ -68,11 +69,11 @@ The following example code illustrates how to export the document as pdf in clie
6869

6970
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
7071

71-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
72+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
7273

73-
The following way illustrates how to convert the document as Pdf:
74+
The following way illustrates how to convert the document as PDF:
7475

75-
* Using [`serialize`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
76+
* Using [`serialize`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
7677

7778
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
7879

@@ -104,7 +105,7 @@ document.getElementById('export').addEventListener('click', function () {
104105
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
105106
106107
* Using Save API in server-side, you can convert the sfdt to stream.
107-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
108+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
108109

109110
The following example code illustrates how to process the sfdt in server-side.
110111

Document-Processing/Word/Word-Processor/javascript-es6/how-to/export-document-as-pdf.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Export document as pdf in JavaScript (ES6) Document editor control | Syncfusion
3+
title: Export PDF in JavaScript (ES6) Document editor | Syncfusion
44
description: Learn here all about Export document as pdf in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more.
55
platform: document-processing
66
control: Export document as pdf
@@ -10,15 +10,16 @@ domainurl: ##DomainURL##
1010

1111
# Export document as pdf in JavaScript (ES6) Document editor control
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

1919
>Note:
20-
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
21-
* There is one limitation we can’t search the text because we are exporting the pdf as image.
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
22+
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
2223

2324
The following example code illustrates how to export the document as pdf in client-side.
2425

@@ -97,11 +98,11 @@ document.getElementById('export').addEventListener('click', function () {
9798

9899
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
99100

100-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
101+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
101102

102-
The following way illustrates how to convert the document as Pdf:
103+
The following way illustrates how to convert the document as PDF:
103104

104-
* Using [`serialize`](https://ej2.syncfusion.com/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
105+
* Using [`serialize`](https://ej2.syncfusion.com/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
105106

106107
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
107108

@@ -133,7 +134,7 @@ document.getElementById('export').addEventListener('click', function () {
133134
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
134135
135136
* Using Save API in server-side, you can convert the sfdt to stream.
136-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
137+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
137138

138139
The following example code illustrates how to process the sfdt in server-side.
139140

Document-Processing/Word/Word-Processor/react/how-to/export-document-as-pdf.md

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

1111
# Export document as pdf in React Document editor component
1212

13-
In this article, we are going to see how to export the document as Pdf format. You can export the document as Pdf in following ways:
13+
In this article, we are going to see how to export the document as PDF format. You can export the document as PDF in following ways:
1414

1515
## Export the document as pdf in client-side
1616

17-
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/react/documentation/api/document-editor#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF). There is one limitation we can’t search the text because we are exporting the pdf as image.
17+
Use [`pdf export component`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export) in application level to export the document as pdf using [`exportAsImage`](https://ej2.syncfusion.com/react/documentation/api/document-editor/#exportasimage) API. Here, all pages will be converted to image and inserted as pdf pages(works like print as PDF).
1818

19-
>Note: You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
19+
>Note:
20+
* The Document Editor exports PDFs by converting pages into images on the client side, which may slightly increase file size compared to text-based PDFs.
21+
* Text search is not supported in the exported PDF, as the content is stored as images.
22+
* You can install the pdf export packages from this [`link`](https://www.npmjs.com/package/@syncfusion/ej2-pdf-export).
2023

2124
The following example code illustrates how to export the document as pdf in client-side.
2225

@@ -100,11 +103,11 @@ ReactDOM.render(<App />, document.getElementById('sample'));
100103
101104
## Export document as pdf in server-side using Syncfusion<sup style="font-size:70%">&reg;</sup> DocIO
102105

103-
With the help of [`Synfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as Pdf in server-side. Here, you can search the text.
106+
With the help of [`Syncfusion DocIO`](https://help.syncfusion.com/file-formats/docio/word-to-pdf), you can export the document as PDF in server-side. Here, you can search the text.
104107

105-
The following way illustrates how to convert the document as Pdf:
108+
The following way illustrates how to convert the document as PDF:
106109

107-
* Using [`serialize`](https://ej2.syncfusion.com/react/documentation/api/document-editor#serialize) API, convert the document as Sfdt and send it to server-side.
110+
* Using [`serialize`](https://ej2.syncfusion.com/react/documentation/api/document-editor/#serialize) API, convert the document as Sfdt and send it to server-side.
108111

109112
The following example code illustrates how to convert the document to sfdt and pass it to server-side.
110113

@@ -150,7 +153,7 @@ ReactDOM.render(<App />, document.getElementById('sample'));
150153
> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
151154
152155
* Using Save API in server-side, you can convert the sfdt to stream.
153-
* Finally, convert the stream to Pdf using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
156+
* Finally, convert the stream to PDF using [`Syncfusion.DocIORenderer.Net.Core`](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core) library.
154157

155158
The following example code illustrates how to process the sfdt in server-side.
156159

0 commit comments

Comments
 (0)