Skip to content

Commit fee69e8

Browse files
committed
983454: Add note in UG Increase in size of exported PDF
1 parent e7ef084 commit fee69e8

File tree

7 files changed

+28
-11
lines changed

7 files changed

+28
-11
lines changed

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

Lines changed: 2 additions & 1 deletion
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+
* The Document Editor exports PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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/javascript-es5/how-to/export-document-as-pdf.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ 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/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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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.
23+
2224

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

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ 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/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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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.
23+
2224

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

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ In this article, we are going to see how to export the document as Pdf format. Y
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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ In this article, we are going to see how to export the document as Pdf format. Y
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/vue/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/vue/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 PDF by converting pages into images on the client-side, which may result in a larger file size for the exported PDF.
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

0 commit comments

Comments
 (0)