注釈エディタにてカスタマイズされた図形注釈を追加する

このサンプルでは、PDFビューワの注釈エディタパネルを有効にし、表示される注釈ツールを指定しています。 ここでは、図形注釈のみが使用できるように表示しています。 また、図形注釈のデフォルトの色と幅を変更しています。
変更を保存するには、ツールバーにある保存ボタンをクリックします。 これにより、PDFと変更点のリストがサーバーに送信され、DsPdfが編集を適用して、変更されたPDFを送り返します。 その後、そのPDFをAcrobatで開くまたはローカルに保存することができます。

window.onload = function(){ var options = { workerSrc: "/diodocs/pdfviewer/demos/product-bundles/build/dspdfviewer.worker.js", supportApi: getSupportApiSettings(), restoreViewStateOnLoad: false }; // エディタのデフォルトを設定 options.editorDefaults = { inkAnnotation: { borderStyle: { width: 3, style: 1 }, color: '#ff9800' }, squareAnnotation: { borderStyle: { width: 5, style: 2, dashArray: [8, 4] }, color: '#000000', interiorColor: '#f44336' }, circleAnnotation: { borderStyle: { width: 2, style: 1 }, color: '#2196f3', interiorColor: '#fff9c8' }, lineAnnotation: { borderStyle: { width: 2, style: 1 }, color: '#4caf50', interiorColor: '#2196f3', lineStart: 'Circle', lineEnd: 'Circle' }, polyLineAnnotation: { borderStyle: { width: 2, style: 1 }, color: '#000000', interiorColor: '#f44336', lineStart: 'Diamond', lineEnd: 'ClosedArrow' }, polygonAnnotation: { borderStyle: { width: 5, style: 1 }, color: '#ff0000', interiorColor: '#faa19b' }, }; const viewer = new DsPdfViewer("#viewer", options); viewer.addDefaultPanels(); viewer.addAnnotationEditorPanel(); viewer.onAfterOpen.register(function() { viewer.layoutMode = 1; }); // ツールバーのボタンを設定 viewer.toolbarLayout.viewer = { default: ['open', 'save', '$navigation', '$split', 'text-selection', 'pan', '$zoom', '$fullscreen', 'download', 'print', 'rotate', 'view-mode', 'hide-annotations', 'doc-properties', 'about'], mobile: ['open', 'save', '$navigation', '$split', 'text-selection', 'pan', '$zoom', '$fullscreen', 'download', 'print', 'rotate', 'view-mode', 'hide-annotations', 'doc-properties', 'about'], fullscreen: ['$fullscreen', 'open', 'save', '$navigation', '$split', 'text-selection', 'pan', '$zoom', '$fullscreen', 'download', 'print', 'rotate', 'view-mode', 'hide-annotations', 'doc-properties', 'about'] }; viewer.toolbarLayout.annotationEditor = { default: ['save', '$split', 'edit-select', '$split', 'edit-ink', 'edit-square', 'edit-circle', 'edit-line', 'edit-polyline', 'edit-polygon', '$split', 'edit-erase', '$split', 'edit-undo', 'edit-redo'], mobile: ['save', '$split', 'edit-select', '$split', 'edit-ink', 'edit-square', 'edit-circle', 'edit-line', 'edit-polyline', 'edit-polygon', '$split', 'edit-erase', '$split', 'edit-undo', 'edit-redo'], fullscreen: ['$fullscreen', 'save', '$split', 'edit-select', '$split', 'edit-ink', 'edit-square', 'edit-circle', 'edit-line', 'edit-polyline', 'edit-polygon', '$split', 'edit-erase', '$split', 'edit-undo', 'edit-redo'] }; viewer.applyToolbarLayout(); viewer.applyOptions(); viewer.open("/diodocs/pdfviewer/demos/product-bundles/assets/pdf/viewer-editor-defaults.pdf"); }
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>エディタのデフォルト設定</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="./src/styles.css"> <script src="/diodocs/pdfviewer/demos/product-bundles/build/dspdfviewer.js"></script> <script src="/diodocs/pdfviewer/demos/product-bundles/build/wasmSupportApi.js"></script> <script src="/diodocs/pdfviewer/demos/resource/js/init.js"></script> <script src="./src/app.js"></script> </head> <body> <div id="viewer"></div> </body> </html>
#viewer { height: 100%; }