forked from syncfusion-content/document-processing-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocument-Processing-toc.html
More file actions
5810 lines (5808 loc) · 402 KB
/
Document-Processing-toc.html
File metadata and controls
5810 lines (5808 loc) · 402 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<ul class="treeview">
<li>
<a href="/cr/document-processing" target="_blank">API Reference</a>
</li>
<li>
<a href="/document-processing/introduction">Introduction</a>
</li>
<li>
<a href="/document-processing/System-Requirements">System Requirements</a>
</li>
<li>Installation<ul>
<li>Web Installer
<ul>
<li>
<a href="/document-processing/installation/web-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/web-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>Offline Installer
<ul>
<li>
<a href="/document-processing/installation/offline-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/offline-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>Mac Installer
<ul>
<li>
<a href="/document-processing/installation/mac-installer/how-to-download">How to Download?</a>
</li>
<li>
<a href="/document-processing/installation/mac-installer/how-to-install">How to Install?</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/installation/installation-errors">Installation Errors</a>
</li>
</ul>
</li>
<li>Upgrade
<ul>
<li>
<a href="/document-processing/upgrade/how-to-upgrade">How to Upgrade Syncfusion FileFormats Installer to Latest Version?</a>
</li>
</ul>
</li>
<li>Licensing
<ul>
<li>
<a href="/document-processing/licensing/overview">Overview</a>
</li>
<li>
<a href="/document-processing/licensing/how-to-generate">How to Generate Syncfusion FileFormats License Key?</a>
</li>
<li>
<a href="/document-processing/licensing/how-to-register-in-an-application">How to Register Syncfusion License Key in FileFormats Application?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/CI-license-validation">How to Validate Syncfusion License Key In CI Services?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-errors">Licensing Errors</a>
</li>
<li>Licensing FAQ
<ul>
<li>
<a href="/document-processing/licensing/licensing-faq/Is-an-internet-connection-required-for-Syncfusion-Essential-Studio-license-validation">Is an internet connection required for Syncfusion Essential Studio license validation?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/how-to-upgrade-from-trial-version-after-purchasing-a-license">How to upgrade from Trial version after purchasing a license?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/where-can-i-get-a-license-key">Where can I get a license key?</a>
</li>
<li>
<a href="/document-processing/licensing/licensing-faq/registering-syncfusion-account-for-nuget-org-user">Registering Syncfusion account for direct NuGet.org user</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="/document-processing/nuget-packages">NuGet Packages</a>
</li>
<li>
<a href="/document-processing/pdf/overview">PDF</a>
<ul>
<li>
<a href="/document-processing/pdf/pdf-viewer/overview">PDF Viewer</a>
<ul>
<li>
<a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/overview">ASP.NET Core</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/feature-module">Feature Modules</a></li>
<li>
Open PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
Save PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/annotation/ink-annotation">Ink Annotation</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/hand-written-signature">Hand Written Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/form-designer/create-programmatically">Create Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/form-designer/create-with-user-interface-interaction">Create with UI Interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/form-designer/form-field-events">Form Field events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/server-actions">Server Actions</a></li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/export-as-image">Export as Image</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/install-packages">Install packages based on OS</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/save-original-document-at-the-server-side">Save original document at the server side</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/delete-a-specific-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/extract-text-using-text-collections">Extract Text using TextLineCollection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/capture-page-number">Capture the current page number being viewed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/display-document-without-downloading">Display document without downloading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/show-bookmark">Show Bookmark</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/load-documents">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/resolve-pdfium-issue">Resolve the Pdfium issue</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/instantiate-pdfviewer-dynamically">Instantiate the PDF Viewer component dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/resolve-Unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/webservice-not-listening">How to clear the Web service not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/open-bookmark">Open and Close Bookmark pane</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/export-as-image-standalone">Export As Image from PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/configure-annotation-selector-setting">Configuring Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/get-page-info">Get Page Info</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/show-custom-stamp-item">Display custom stamp Items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/extract-text-completed">Extract Text Completed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/how-to/show-hide-annotation">Show and Hide Annotations</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-core/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li>
<a href="/cr/aspnetcore-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/overview">ASP.NET MVC</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/feature-module">Feature Modules</a></li>
<li>
Open PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
Save PDF files
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-google-cloud-storage">Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/annotation/ink-annotation">Ink Annotation</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/form-filling">Form Filling</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/hand-written-signature">Hand Written Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/form-designer/create-programmatically">Create Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/form-designer/create-with-user-interface-interaction">Create with UI Interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/form-designer/form-field-events">Form Field events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/server-actions">Server Actions</a></li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/export-as-image">Export as Image</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/set-author-name-to-annotation">Set author name to annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/identify-the-loaded-document-is-edited">Identify the loaded document is edited</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/close-comment-panel">Close the comment panel</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/access-file-name">Access file name</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/include-the-authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/load-balancing-environment">Achieve Load balancing environment in MVC framework</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/extract-text-using-text-collection">Extract Text using TextLineCollection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/load-the-document">Load the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/show-notification-dialog">Show the notification dialog in UI When form fields are empty</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/load-documents">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/redirect-to-home-page">Redirect to a home page after submittin PDF forms</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/resolve-pdfium-issue">Resolve the Pdfium issue</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/signature-date">How to add the date to the signature text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/default-width-height">How to change the default width and height</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/resolve-Unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/webservice-not-listening">How to clear the Web service not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/open-bookmark">Open and Close Bookmark pane</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/export-as-image-standalone">Export As Image from PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/configure-annotation-selector-setting">Configuring Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/get-page-info">Get Page Info</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/show-custom-stamp-item">Display custom stamp items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/extract-text-completed">Extract Text Completed</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/how-to/show-hide-annotation">Show and Hide Annotation</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-core-mvc/asp-net-mvc/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li>
<a href="/cr/aspnetmvc-js2/Syncfusion.EJ2.PdfViewer.PdfViewer.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/angular/overview">Angular</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/mobile-toolbar">Mobile Toolbar Interface</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/import-export-annotation">Import and Export Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/annotation/signature-annotation">Handwritten Signature</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/form-designer/create-programmatically">Create Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/form-designer/create-with-user-interface-interaction">Create with UI Interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/form-designer/form-field-events">Form Field Events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/accessibility">Accessibility</a></li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-document">Load PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/include-authorization-token">Include Authorization Token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/get-base-string-of-the-loaded-document">Get the Base64 string of the loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/change-selection-border">Customize the selection border</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text-completed">Extract Text using extractTextCompleted Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-disable-annotation">How to enable and disable the delete button based on annotation selection and unselection events</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-stamp">Add the custom stamp based on the free text bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/install-packages-required-for-lower-versions">Install packages required for versions below 12</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-office-files">Load Office files in PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/font-family">How to Change the Font Family in the Type Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/resolve-unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/webservice-not-listening">How to clear the Web-service is not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/redis-cache">Configure Redis Cache</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/conformance">Supported conformance documents</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/open-bookmark">Open and Close Bookmark pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/lock-formfield-in-a-document">Locking Form Fields in a PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/export-as-image">Export As Image in Angular PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-with-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above with --no-standalone flag</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/create-a-standalone-pdf-viewer-in-angular-17-and-above-without-no-standalone-flag">Create a Standalone PDF Viewer in Angular 17 and above without --no-standalone flag</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/configure-annotation-selector-setting">Configure Annotation Selector Setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/show-custom-stamp-item">Display Custom Stamp items in Custom Stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/getPageInfo">Get Page Info in Angular PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/control-annotation-visibility">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/find-text-async">Find Text using findTextAsync Method</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/how-to/show-hide-annotation">Show and Hide Annotations</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/troubleshooting">Experience the Standalone PDF Viewer Component by copying assets from node_modules into my app</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/cp-command-not-recognized">Troubleshoot error 'cp' is not recognized as a command</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/angular/troubleshooting/common-errors-when-ej2-pdfviewer-lib-assets-are-missing">Failed to execute 'importScripts' on 'WorkerGlobalScope'</a></li>
</ul>
</li>
<li><a href="https://ej2.syncfusion.com/angular/documentation/api/pdfviewer/">API Reference</a></li>
</ul>
</li>
<li>Blazor
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/features">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/migration">Migration from PDF Viewer (Classic) to PDF Viewer</a></li>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/web-app">Blazor Web App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/server-side-application">Blazor Server App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/web-assembly-application">Blazor WASM App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/deploy-maui-windows">Blazor MAUI App</a></li>
</ul>
</li>
<li>Deployment
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/getting-started/wsl-application">Windows Subsystem for Linux</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/deployment/aws-beanstalk-deployment">AWS Elastic Beanstalk</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/accessibility">Accessibility</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/opening-pdf-file">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/saving-pdf-file">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/toolbar-customization">Toolbar Customization</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/command-manager">Command Manager</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/navigation">Navigation</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/magnification">Magnification</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/text-search">Text Search</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/interaction">Interaction Mode</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/hand-written-signature">Handwritten Signature</a></li>
<li>Annotations
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/text-markup-annotation">Text Markup Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/shape-annotation">Shape Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/stamp-annotation">Stamp annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/sticky-notes-annotation">Sticky Notes Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/measurement-annotation">Measurement Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/free-text-annotation">Free Text Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/redaction-annotation">Redaction Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/import-export-annotation">Import and Export Annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/annotation/annotations-in-mobile-view">Annotations in Mobile View</a></li>
</ul>
</li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/form-designer/overview">Overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/form-designer/create-programmatically">Programmatic Support for Form Designer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/form-designer/ui-interactions">UI Interactions in Form Designer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer2/blazor/form-designer/events">Events in Form Designer</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/form-filling">Form Filling</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/print">Print</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/events">Events</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/globalization">Globalization and RTL</a></li>
<li>How To
<ul>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/how-to-load-PDF-from-URL-to-server-side-PDF-viewer">Load PDF from URL to server-side PDF viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/create-sfpdfviewer-in-a-popup-window">Create a SfPdfViewer within a popup window in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/load-pdf-document-dynamically">Load PDF documents dynamically in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/load-office-files">Load Office files in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/view-docx-file-in-blazor-application">View DOCX file in Blazor application</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/unload-the-pdf-document-from-viewer">Unload the PDF document from Viewer in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/import-annotations-as-objects">Import annotations as objects in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/suppress-error-message">Suppress the error dialog</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/move-scrollbar">Move the scrollbar to the exact location of annotations</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/create-sfpdfviewer">View the created PDF document</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/check-status-of-annotations-or-comments">Check the status of annotations or comments in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/customize-arrow-annotation-heads">Customize arrow annotation heads in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/show-or-hide-sfpdfviewer-dynamically">Show or hide the SfPdfViewer Component dynamically in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/increase-connection-buffer-size">Increase the connection buffer size in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/print-the-sfpdfiewer-inside-the-dialog-component">Print the SfPdfViewer component inside the Dialog component in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/change-the-highlighted-color-of-the-text">Change the highlight color of the text in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/check-whether-the-loaded-PDF-document-is-edited-or-not">Check the document's editing status in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/create-pdf-document-in-the-created-event-of-sfpdfviewer">Create PDF document in the created event of Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/create-sfpdfviewer-in-a-splitter-component">Create SfPdfViewer Component in a Splitter Component in Blazor</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/get-data-from-sfpdfviewer">Get PDF document's data from Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/load-desired-pdf-for-initial-loading-in-hosted-sample">Load desired PDF for initial loading in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/stretch-the-sfpdfviewer-size-to-its-container">Update the viewer size at run-time in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/update-form-field-using-context-menu">Update form field using context menu in Blazor SfPdfViewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/identify-the-values-in-the-undo-redo-collections">Identify if the SfPdfViewer has values in the Undo, Redo collections</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/render-ej2-pdf-viewer-in-blazor">Render JS PDF Viewer inside Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/prevent-scrolling">Prevent the PDF from scrolling and remove the vertical scrollbar</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/perform-print-in-same-window">Perform print in same window in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/print-large-page-document">Print large page document in SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/refer-sfpdfviewer-script-in-application">Refer the SfPdfViewer script file in Blazor application</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/deploy-maui-using-android-emulator">Render PDF document from embedded source in the MAUI Android app</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/improve-performance-using-CDN">Improve the performance using CDN in Blazor SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/processing-large-files-without-increasing-maximum-message-size">Processing Large Files Without Increasing Maximum Message Size in SfPdfViewer Component</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/load-custom-font-pdfium">Load Custom Fonts in a PDF Viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/render-n-pages-scrolling">Render N number pages on scrolling</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/load-font-collection">Load Font Collection in a PDF Viewer</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/reduce-slowness-while-running-the-wasm-sample-in-Visual-Studio">Reduce slowness while running the WASM sample in Visual Studio</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/coordinate-conversion-between-page-and-client-points">Coordinate Conversion Between Page and Client Points</a></li>
<li> <a href="/document-processing/pdf/pdf-viewer2/blazor/how-to/content-security-policy">Use strict CSP in Blazor SfPdfViewer Component</a></li>
</ul>
</li>
<li>
<a href="/cr/blazor/Syncfusion.Blazor.SfPdfViewer.SfPdfViewer2.html"> API Reference</a>
</li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/overview">React</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/preact">Preact</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-amazon-s3">From AWS S3</a>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/react/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/mobile-toolbar">Mobile Toolbar Interface</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/sticky-notes-annotation">Sticky NotesAnnotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/annotation/signature-annotation">Handwritten signature</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/form-designer/create-programmatically">Create form fields programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/form-designer/create-with-user-interface-interaction">Create form fields with UI interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/form-designer/form-field-events">Form Field events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/react/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/accessibility">Accessibility</a></li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/load-document">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/lock-annotation">Lock square or rectangle annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/add-signature">Add signature in signature field</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/extract-text-completed">Extract Text using extractTextCompleted Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/convert-pixel-to-point-in-server-side">Convert Point to Pixel in Server-side</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/retrieve-id-of-the-document">View the hash id of the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/perform-form-field-double-click-event">Perform form field double click event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/clear-annotation">Clear the annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/resolve-unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/webservice-not-listening">How to clear the Web service not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/conformance">Supported conformance documents</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/pagerenderstarted-pagerendercompleted-event">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/open-bookmark">Open and Close Bookmark pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/export-as-image">Export As Image in React Pdfviewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/add-save-button">Add a Save button in the built-in Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/configure-annotation-selector-setting">Configure annotationSelector setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/show-custom-stamp-item">Display Custom stamp items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/getPageInfo">Get Page Info in React PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/control-annotation-visibility">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/show-hide-annotation">Show and Hide Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/react/troubleshooting/troubleshooting">Why Do I Have to Manually Copy Files from node_modules into My App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/troubleshooting/cp-command-not-recognized">Troubleshoot error 'cp' is not recognized as a command</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/react/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li><a href="https://ej2.syncfusion.com/react/documentation/api/pdfviewer/">API Reference</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/vue/overview">Vue</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/getting-started-application">Vue 3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/quasar">Quasar</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/mobile-toolbar">Mobile Toolbar Interface</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/text-markup-annotation">Text Markup Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/signature-annotation">Hand Written Signature</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/sticky-notes-annotation">Sticky Notes Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/measurement-annotation">Measurement Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/annotation/comments">Comments</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/form-designer/create-programmatically">Create form fields programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/form-designer/create-with-user-interface-interaction">Create form fields with UI interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/form-designer/form-field-events">Form Field events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/content-security-policy">Content Security Policy</a></li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/load-documents">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/open-thumbnail">Open Thumbnail</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/extract-text-completed">Extract Text using extractTextCompleted Event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/import-export-annotation">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/authorization-token">Include the Authorization token</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/convert-pixel-to-point-in-server-side">Convert Pixel to Point in Server side</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/select-annotation">Select a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/resolve-unable-to-find-an-entry-point-error">Resolve unable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/webservice-not-listening">How to clear the Web-service is not listening error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/retry-timeout">Retry Timeout</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/load-n-number-page">Load N number of pages on initial loading</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/conformance">Supported conformance documents</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/custom-context-menu">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/pagerenderstarted-pagerendercompleted">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/open-bookmark">Open and Close Bookmark pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/signatureselect-signatureunselect">SignatureSelect and SignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/download-start-event">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/min-max-zoom">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/restricting-zoom-in-mobile-mode">Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/export-as-image">Export As Image in Vue Pdfviewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/custom-font-signature-field">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/configure-annotation-selector-setting">Configure Annotation selector setting</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/show-custom-stamp-item">Display custom stamp items in custom stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/getPageInfo">Get Page Info in Vue PDF Viewer component</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/get-base64">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/enable-local-storage">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/add-annotation-in-text-search">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/control-annotation-visibility">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/extract-text-option">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/find-text-async">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/extract-text">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/show-hide-annotation">Show and Hide Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/how-to/enable-text-selection">Dynamically Enable or Disable Text Selection</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/vue/troubleshooting/troubleshooting">Why Do I Have to Manually Copy Files from node_modules into My App</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/troubleshooting/cp-command-not-recognized">Troubleshoot error 'cp' is not recognized as a command</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/vue/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
</ul>
</li>
<li><a href="https://ej2.syncfusion.com/vue/documentation/api/pdfviewer/">API Reference</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/overview">JavaScript (ES5)</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>
</ul>
</li>
<li> <a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-files">Save PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-amazon-s3">To AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-azure-blob-storage">To Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-google-cloud-storage">To Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-google-drive">To Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-one-drive">To One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-dropbox-cloud-file-storage">To Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-box-cloud-file-storage">To Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/save-pdf-file/to-azure-active-directory">To Azure Active Directory</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/toolbar">Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/mobile-toolbar">Mobile Toolbar Interface</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/navigation">Navigation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/magnification">Magnification</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/accessibility">Accessibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/text-search">Text Search</a></li>
<li>Annotation
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/text-markup-annotation">Text Markup Annotation</a>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/shape-annotation">Shape Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/stamp-annotation">Stamp Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/sticky-notes-annotation">Sticky notes</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/measurement-annotation">Measurement annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/free-text-annotation">Free Text Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/ink-annotation">Ink Annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/comments">Comments</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/annotations/signature-annotation">Handwritten signature</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/interaction-mode">Interaction Mode</a></li>
<li>Form Designer
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/form-designer/create-programmatically">Create form fields programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/form-designer/create-with-user-interface-interaction">Create form fields with UI interaction</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/form-designer/form-field-events">Form Field events</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/organize-pdf">Organize Pages</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/print">Print</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/download">Download</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/globalization">Globalization</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/ej1-api-migration">Migration from Essential JS 1</a></li>
<li>Server Deployment
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/server-deployment/pdfviewer-server-docker-image-overview">PDF Viewer server docker image overview</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/server-deployment/how-to-deploy-docker-image-in-azure-app-service-for-container">How to Deploy Docker Image in Azure App Service for Container</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/server-deployment/how-to-deploy-docker-image-in-azure-kubernetes-service">How to Deploy Docker Image in Azure Kubernetes Service</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/server-deployment/how-to-deploy-pdfviewer-server-app-in-azure-app-service-from-visual-studio">How to Deploy PdfViewer Server App in Azure App Service from Visual Studio</a></li>
</ul>
</li>
<li>How To
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/create-pdfviewer-service">Create PDF Viewer Service in ASPNET MVC</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/create-pdfviewer-service-core">Create PDF Viewer Service in ASPNET Core</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/change-author-name-using-annotation-settings">Change author name using AnnotationSettings</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/highlight-underline-strikeout-text">Highlight, Underline and Strikeout Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/enable-resize">Enable the resizer for text markup annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/customize-text-search-color">Customize the text search color</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/disable-context-menu">Disable context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/extract-text-completed-js">Extract text using extractTextCompleted event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/import-annotations">Import annotations on load PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/identify-added-annotation-mode">Identify added Annotation mode</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/overlapped-annotation">Get the overlapped annotations on mouse click</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/display-custom-tool-tip-for-annotation">Display custom tooltip for annotations using MouseOver event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/select-multi-page-annotations">Select multi-page TextMarkup annotation as single annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/disable-tile-rendering">Disable the tile rendering</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/add-header-value">Add custom headers in AjaxRequestSettings</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/print-document">Print the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/unload-document">Unload the PDF document Programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/load-document">Load the PDF documents dynamically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/import-export-annotation-js">Import and Export annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/delete-annotation">Delete a specific annotation</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/open-thumbnail">Open Thumbnail pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/annotation-selectors">Customize the annotation selector</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/clear-annotations">Clear the annotations</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/resolve-unable-to-find-an-entry-point-error">Resolveunable to find an entry point named FPDFText_GetCharAngle error</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/conformance">Supported conformance documents</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/custom-context-menu-js">Customize context menu</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/pagerenderstarted-pagerendercompleted-js">PageRenderInitiate and PageRenderComplete event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/open-bookmark-js">Open and Close Bookmark pane programmatically</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/signatureselect-signatureunselect-js">SignatureSelect andSignatureUnselect event</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/download-start-event-js">Controlling File Downloads</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/min-max-zoom-js">Minimum and Maximum Zoom Properties</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/restricting-zoom-in-mobile-mode-js">How to Restrict Zoom Percentage on Mobile Devices</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/export-as-image-js">Export As Image</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/custom-font-signature-field-js">Custom fonts for Signature and Initial fields</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/custom-fonts">Add custom fonts to the PDF Viewer using the PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/add-save-button-js">Add a Save button in the built-in Toolbar</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/convert-pdf-library-bounds-to-pdf-viewer-bounds-js">Convert Pdf Library Bounds to Pdf viewer bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/configure-annotationselector-setting-js">Configure AnnotationSelectorSettings</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/show-custom-stamp-item-js">Display Custom Stamp items in Custom Stamp</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/get-page-info-js">Get Page Info</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/get-base64-js">Retrieve base64-encoded value of a loaded PDF document</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/enable-local-storage-js">Enable Local Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/add-annotation-in-text-search-js">Add Rectangle Annotation using Search Text Bounds</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/control-annotation-visibility-js">Control Annotation Visibility</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/extract-text-option-js">Extract Text Option</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/find-text-async-js">Find Text using findTextAsync</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/extract-text-js">Extract Text</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/enable-text-selection-js">Dynamically Enable or Disable Text Selection</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/how-to/show-hide-annotation-js">Show and Hide Annotation</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/troubleshooting/document-loading-issues">Document Loading Issues in Version 23.1 or Newer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/troubleshooting/content-security-policy">Content Security Policy</a></li>
</ul>
</li>
<li>Style and Appearance
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/style-and-appearance/style-and-appearance"> Style and Appearance</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/style-and-appearance/annotation">Style and Appearance in Annotation module</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es5/style-and-appearance/form-designer">Style and Appearance in Form Field module</a></li>
</ul>
</li>
<li><a href="https://ej2.syncfusion.com/javascript/documentation/api/pdfviewer">API Reference</a></li>
</ul>
</li>
<li>
<a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/overview">JavaScript (ES6)</a>
<ul>
<li>Getting Started
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/getting-started">with Standalone PDF Viewer</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/getting-started-with-server-backed">with Server-Backed PDF Viewer</a></li>
</ul>
</li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/feature-module">Feature Modules</a></li>
<li>
<a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-files">Open PDF files</a>
<ul>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-amazon-s3">From AWS S3</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-azure-blob-storage">From Azure Blob Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-google-cloud-storage">From Google Cloud Storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-google-drive">From Google Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-one-drive">From One Drive</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-dropbox-cloud-file-storage">From Dropbox cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-box-cloud-file-storage">From Box cloud file storage</a></li>
<li><a href="/document-processing/pdf/pdf-viewer/javascript/javascript-es6/open-pdf-file/from-azure-active-directory">From Azure Active Directory</a></li>