You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-vue/pdfviewer/open-pdf-file/from-amazon-s3.md
+91-2Lines changed: 91 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,95 @@ domainurl: ##DomainURL##
10
10
11
11
# Open PDF file from AWS S3
12
12
13
+
PDF Viewer allows to load PDF file from AWS S3 using either the Standalone or Server-backed PDF Viewer. Below are the steps and a sample to demonstrate how to open a PDF from AWS S3.
14
+
15
+
## Using Standalone PDF Viewer
16
+
17
+
To load a PDF file from AWS S3 in a PDF Viewer, you can follow the steps below.
18
+
19
+
**Step 1:** Create a PDF Viewer sample in Vue
20
+
21
+
Follow the instructions provided in this [link](https://ej2.syncfusion.com/vue/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample in Vue. This will set up the basic structure of your PDF Viewer application.
22
+
23
+
**Step 2:** Modify the `src/App.vue` File in the Vue Project
24
+
25
+
1. Import the required namespaces at the top of the file:
26
+
27
+
{% tabs %}
28
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
29
+
30
+
<script>
31
+
importAWSfrom'aws-sdk';
32
+
</script>
33
+
34
+
{% endhighlight %}
35
+
{% endtabs %}
36
+
37
+
2. Configures AWS SDK with the region, access key, and secret access key. This configuration allows the application to interact with AWS services like S3.
38
+
39
+
N> Replace **Your Region** with the actual Region of your AWS S3 account and **Your Access Key** with the actual Access Key of your AWS S3 account and **Your Security Access Key** with the actual Security Access Key of your AWS S3 account.
40
+
41
+
{% tabs %}
42
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
43
+
44
+
<script>
45
+
AWS.config.update({
46
+
region:'**Your Region**', // Update this your region
47
+
accessKeyId:'*Your Access Key*', // Update this with your access key id
48
+
secretAccessKey:'*Your Security Access Key*', // Update this with your secret access key
49
+
});
50
+
</script>
51
+
52
+
{% endhighlight %}
53
+
{% endtabs %}
54
+
55
+
3. Sets the parameters for fetching the PDF document from S3, including the bucket name and file key. Then Uses the getObject method of the S3 instance to retrieve the document. Converts the document data to a Base64 string and loads it into the Syncfusion PDF Viewer then load Base64 string generated into the viewer.load method.
56
+
57
+
N> Replace **Your Bucket Name** with the actual Bucket name of your AWS S3 account and **Your Key** with the actual File Key of your AWS S3 account.
58
+
59
+
60
+
{% tabs %}
61
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
N> The **npm install aws-sdk** package must be installed in your application to use the previous code example.
97
+
98
+
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3/tree/master/Open%20and%20Save%20PDF%20in%20AWS%20S3%20using%20Standalone).
99
+
100
+
## Using Server-Backed PDF Viewer
101
+
13
102
To load a PDF file from AWS S3 in a PDF Viewer, you can follow the steps below
14
103
15
104
**Step 1:** Create a Simple PDF Viewer Sample in Vue
6. Open the `appsettings.json` file in your web service project, Add the following lines below the existing `"AllowedHosts"` configuration
189
+
6. Open the `app settings.json` file in your web service project, Add the following lines below the existing `"AllowedHosts"` configuration
101
190
102
191
```json
103
192
{
@@ -186,4 +275,4 @@ export default {
186
275
187
276
N> The **AWSSDK.S3** NuGet package must be installed in your application to use the previous code example.
188
277
189
-
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3)
278
+
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3/tree/master/Open%20and%20Save%20PDF%20in%20AWS%20S3%20using%20Server-Backend)
Copy file name to clipboardExpand all lines: ej2-vue/pdfviewer/save-pdf-file/to-amazon-s3.md
+138-3Lines changed: 138 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,142 @@ documentation: ug
8
8
domainurl: ##DomainURL##
9
9
---
10
10
11
-
# Save PDF file to AWS S3
11
+
# Save PDF file to AWS S3
12
+
13
+
PDF Viewer allows to save PDF file to AWS S3 using either the Standalone or Server-backed PDF Viewer. Below are the steps and a sample to demonstrate how to save PDF to AWS S3.
14
+
15
+
## Using Standalone PDF Viewer
16
+
17
+
To load a PDF file from AWS S3 in a PDF Viewer, you can follow the steps below.
18
+
19
+
**Step 1:** Create a PDF Viewer sample in Vue
20
+
21
+
Follow the instructions provided in this [link](https://ej2.syncfusion.com/vue/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample in Vue. This will set up the basic structure of your PDF Viewer application.
22
+
23
+
**Step 2:** Modify the `src/App.vue` File in the Vue Project
24
+
25
+
1. Import the required namespaces at the top of the file:
26
+
27
+
{% tabs %}
28
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
29
+
30
+
<script>
31
+
importAWSfrom'aws-sdk';
32
+
</script>
33
+
34
+
{% endhighlight %}
35
+
{% endtabs %}
36
+
37
+
2. Configures AWS SDK with the region, access key, and secret access key. This configuration allows the application to interact with AWS services like S3.
38
+
39
+
N> Replace **Your Region** with the actual Region of your AWS S3 account and **Your Access Key** with the actual Access Key of your AWS S3 account and **Your Security Access Key** with the actual Security Access Key of your AWS S3 account.
40
+
41
+
{% tabs %}
42
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
43
+
44
+
<script>
45
+
AWS.config.update({
46
+
region:'**Your Region**', // Update this your region
47
+
accessKeyId:'*Your Access Key*', // Update this with your access key id
48
+
secretAccessKey:'*Your Security Access Key*', // Update this with your secret access key
49
+
});
50
+
</script>
51
+
52
+
{% endhighlight %}
53
+
{% endtabs %}
54
+
55
+
3. Configure a custom toolbar item for the download function to save a PDF file in Azure Blob Storage.
56
+
57
+
{% tabs %}
58
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
4. Retrieve the PDF viewer instance and save the current PDF as a Blob. Then, read the Blob using a FileReader to convert it into an ArrayBuffer, and upload the ArrayBuffer to AWS S3 using the putObject method of the S3 instance.
102
+
103
+
N> Replace **Your Bucket Name** with the actual Bucket name of your AWS S3 account and **Your Key** with the actual File Key of your AWS S3 account.
104
+
105
+
{% tabs %}
106
+
{% highlight html tabtitle="Options API (~/src/App.vue)" %}
107
+
108
+
<script>
109
+
exportdefault {
110
+
methods: {
111
+
savePdfDocument:function () {
112
+
var viewer =document.getElementById('pdfViewer').ej2_instances[0];
N> The **npm install aws-sdk** package must be installed in your application to use the previous code example.
143
+
144
+
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3/tree/master/Open%20and%20Save%20PDF%20in%20AWS%20S3%20using%20Standalone).
145
+
146
+
## Using Server-Backed PDF Viewer
12
147
13
148
To save a PDF file to AWS S3, you can follow the steps below
14
149
@@ -87,7 +222,7 @@ public IActionResult Download([FromBody] Dictionary<string, string> jsonObject)
87
222
}
88
223
```
89
224
90
-
6. Open the `appsettings.json` file in your web service project, Add the following lines below the existing `"AllowedHosts"` configuration
225
+
6. Open the `app settings.json` file in your web service project, Add the following lines below the existing `"AllowedHosts"` configuration
91
226
92
227
```json
93
228
{
@@ -176,4 +311,4 @@ export default {
176
311
177
312
N> The **AWSSDK.S3** NuGet package must be installed in your application to use the previous code example.
178
313
179
-
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3)
314
+
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3/tree/master/Open%20and%20Save%20PDF%20in%20AWS%20S3%20using%20Server-Backend)
0 commit comments