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-angular/pdfviewer/open-pdf-file/from-amazon-s3.md
+69-1Lines changed: 69 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,74 @@ domainurl: ##DomainURL##
10
10
11
11
# Open PDF file from AWS S3
12
12
13
+
PDF Viewer allows to load PDF file from Azure Blob Storage using either the Standalone or Server-backend 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 Angular
20
+
21
+
Follow the instructions provided in this [link](https://ej2.syncfusion.com/angular/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample in Angular. This will set up the basic structure of your PDF Viewer application.
22
+
23
+
**Step 2:** Modify the `src/app/app.component.ts` File in the Angular Project
24
+
25
+
1. Import the required namespaces at the top of the file:
26
+
27
+
```typescript
28
+
import*asAWSfrom'aws-sdk';
29
+
```
30
+
31
+
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.
32
+
33
+
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.
34
+
35
+
```typescript
36
+
AWS.config.update({
37
+
region: '**Your Region**', // Update this your region
38
+
accessKeyId: '*Your Access Key*', // Update this with your access key id
39
+
secretAccessKey: '*Your Security Access Key*', // Update this with your secret access key
40
+
});
41
+
```
42
+
43
+
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 strikng generated into the viewer.load method.
44
+
45
+
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.
N> The **npm install aws-sdk** package must be installed in your application to use the previous code example.
76
+
77
+
[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).
78
+
79
+
## Using Server-Backed PDF Viewer
80
+
13
81
To load a PDF file from AWS S3 in a PDF Viewer, you can follow the steps below
14
82
15
83
**Step 1:** Create a Simple PDF Viewer Sample in Angular
N> The **AWSSDK.S3** NuGet package must be installed in your application to use the previous code example.
153
221
154
-
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3)
222
+
[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-angular/pdfviewer/save-pdf-file/to-amazon-s3.md
+111-1Lines changed: 111 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,116 @@ domainurl: ##DomainURL##
10
10
11
11
# Save PDF file to AWS S3
12
12
13
+
PDF Viewer allows to save PDF file to Azure Blob Storage using either the Standalone or Server-backend PDF Viewer. Below are the steps and a sample to demonstrate how to save a PDF to AWS S3.
14
+
15
+
## Using Standalone PDF Viewer
16
+
17
+
To save a PDF file to AWS S3, you can follow the steps below
18
+
19
+
**Step 1:** Create a PDF Viewer sample in Angular
20
+
21
+
Follow the instructions provided in this [link](https://ej2.syncfusion.com/angular/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample in Angular. This will set up the basic structure of your PDF Viewer application.
22
+
23
+
**Step 2:** Modify the `src/app/app.component.ts` File in the Angular Project
24
+
25
+
1. Import the required namespaces at the top of the file:
26
+
27
+
```typescript
28
+
import*asAWSfrom'aws-sdk';
29
+
```
30
+
31
+
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.
32
+
33
+
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.
34
+
35
+
```typescript
36
+
AWS.config.update({
37
+
region: '**Your Region**', // Update this your region
38
+
accessKeyId: '*Your Access Key*', // Update this with your access key id
39
+
secretAccessKey: '*Your Security Access Key*', // Update this with your secret access key
40
+
});
41
+
```
42
+
43
+
3. Configure a custom toolbar item for the download function to save a PDF file in Azure Blob Storage.
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.
86
+
87
+
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.
88
+
89
+
```typescript
90
+
privates3=newAWS.S3();
91
+
92
+
saveDocument() {
93
+
var viewer = (<any>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.
118
+
119
+
[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).
120
+
121
+
## Using Server-Backed PDF Viewer
122
+
13
123
To save a PDF file to AWS S3, you can follow the steps below
N> The **AWSSDK.S3** NuGet package must be installed in your application to use the previous code example.
142
252
143
-
[View sample in GitHub](https://github.com/SyncfusionExamples/open-save-pdf-documents-in-aws-s3)
253
+
[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