소개

SpreadJS는 PDF 파일로 내보내기를 지원합니다. PDF 내보내기는 Spread.Sheets의 플러그인 기능 중 하나이며 인쇄 플러그인이 페이지에 포함되어야 합니다.

PDF 내보내기 기능을 사용하려면 Spread.Sheets에 대한 링크 아래에 위치해 있는 문서 헤더 부분의 JavaScript 파일에 대한 링크를 추가하십시오: PDF 파일을 내보내려면 다음과 같이 spread.savePDF() 메서드를 사용할 수 있습니다: 메서드 매개 변수는 다음과 같습니다: successCallback\: 성공적으로 내보낸 후 이 함수를 호출합니다. 함수(blob){}. errorCallback\: 오류가 발생하면 이 함수를 호출합니다. options: PDF 파일로 내보내는 옵션입니다. options.creator: 변환된 원본 문서를 작성한 응용프로그램 이름(예: Adobe FrameMaker®). options.title: 문서의 제목 options.author: 문서를 작성한 사람의 이름 options.keywords: 문서와 관련된 키워드 options.subject:문서의 주제 sheetIndex\: 시트 인덱스와 함께 지정된 시트를 내보냅니다. 설정하지 않으면 표시된 모든 시트가 내보내집니다. 예를 들어, 다음 코드를 사용하여 Spread.Sheets의 모든 시트를 PDF로 내보낼 수 있습니다: SpreadJS는 14가지 기본 제공 표준 글꼴을 지원합니다: Courier: Courier, Courier-Bold, Courier-Oblique, Courier-BoldOblique Times: Tomes-Roman, Times-Bold, Times-Italic, Times-BoldItalic Helvetica: Helvetica, Helvetica-Bold, Helvetica-Oblique, Helvetica-BoldOblique Symbol: Symbol ZapfDingbats: ZapfDingbats
<template> <div class="sample-tutorial"> <gc-spread-sheets class="sample-spreadsheets" @workbookInitialized="initSpread"> </gc-spread-sheets> <div class="options-container"> <div class="option-row"> <p>Click this button to export the Spread component to a PDF file.</p> <input type='button' id="savePDF" value="Export PDF" v-on:click='exportPDF()' /> </div> </div> </div> </template> <script setup> import GC from "@mescius/spread-sheets"; import { ref } from "vue"; import "@mescius/spread-sheets-print"; import "@mescius/spread-sheets-pdf"; import "@mescius/spread-sheets-vue"; import '@mescius/spread-sheets-resources-ko'; GC.Spread.Common.CultureManager.culture("ko-kr"); const spreadRef = ref(null); const exportPDF = () => { spreadRef.value.savePDF( function (blob) { saveAs(blob, "download.pdf"); }, console.log, { title: "Test Title", author: "Test Author", subject: "Test Subject", keywords: "Test Keywords", creator: "test Creator", } ); }; const initSpread = (spread) => { spreadRef.value = spread; let sheet = spread.getActiveSheet(); sheet.suspendPaint(); let style = new GC.Spread.Sheets.Style(); style.font = "15px Times"; sheet.setDefaultStyle(style); addPieContent(sheet); addTableContent(sheet); let printInfo = sheet.printInfo(); printInfo.showBorder(true); printInfo.showGridLine(true); printInfo.headerCenter("Family Business Costs"); printInfo.headerLeft("&G"); printInfo.footerCenter("&P/&N"); sheet.resumePaint(); }; const addTableContent = (sheet) => { sheet.addSpan(1, 0, 1, 7); sheet.setRowHeight(1, 40); sheet .getCell(1, 0) .value("Costs") .font("28px Times") .foreColor("#11114f") .hAlign(GC.Spread.Sheets.HorizontalAlign.left) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.addSpan(2, 0, 1, 7); sheet.setRowHeight(2, 30); sheet .getCell(2, 0) .value("Family Business") .font("18px Times") .foreColor("#11114f") .backColor("#f5f5f5") .hAlign(GC.Spread.Sheets.HorizontalAlign.left) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(0, 105); sheet.setRowHeight(3, 35); sheet .getCell(3, 0) .value("Costs Elements") .font("Bold 15px Times") .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.left) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(1, 70); sheet .getCell(3, 1) .value("2018") .font("Bold 15px Times") .foreColor("#171717") .backColor("#dfe9fb") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(2, 70); sheet .getCell(3, 2) .value("2019") .font("Bold 15px Times") .foreColor("#171717") .backColor("#d1dffa") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(3, 70); sheet .getCell(3, 3) .value("2020") .font("Bold 15px Times") .foreColor("#171717") .backColor("#9bbaf3") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(4, 70); sheet .getCell(3, 4) .value("2021") .font("Bold 15px Times") .foreColor("#ffffff") .backColor("#5c7ee6") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(5, 70); sheet .getCell(3, 5) .value("2022") .font("Bold 15px Times") .foreColor("#ffffff") .backColor("#1346a4") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setColumnWidth(6, 70); sheet .getCell(3, 6) .value("Total") .font("Bold 15px Times") .foreColor("#ffffff") .backColor("#102565") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 0) .value("Salaries") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(4, 1, 200); sheet.setValue(4, 2, 210); sheet.setValue(4, 3, 250); sheet.setValue(4, 4, 300); sheet.setValue(4, 5, 360); sheet .getCell(4, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(4, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 0) .value("Consulting") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(5, 1, 100); sheet.setValue(5, 2, 100); sheet.setValue(5, 3, 100); sheet.setValue(5, 4, 240); sheet.setValue(5, 5, 260); sheet .getCell(5, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(5, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 0) .value("Hardware") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(6, 1, 2000); sheet.setValue(6, 2, 2500); sheet.setValue(6, 3, 0); sheet.setValue(6, 4, 3000); sheet.setValue(6, 5, 3200); sheet .getCell(6, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(6, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 0) .value("Software") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(7, 1, 500); sheet.setValue(7, 2, 100); sheet.setValue(7, 3, 100); sheet.setValue(7, 4, 200); sheet.setValue(7, 5, 250); sheet .getCell(7, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(7, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 0) .value("Training") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(8, 1, 1100); sheet.setValue(8, 2, 1300); sheet.setValue(8, 3, 2500); sheet.setValue(8, 4, 1300); sheet.setValue(8, 5, 1250); sheet .getCell(8, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(8, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 0) .value("Travel") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(9, 1, 2000); sheet.setValue(9, 2, 2000); sheet.setValue(9, 3, 1000); sheet.setValue(9, 4, 1500); sheet.setValue(9, 5, 0); sheet .getCell(9, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(9, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 0) .value("Other") .foreColor("#171717") .backColor("#ffffff") .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setValue(10, 1, 200); sheet.setValue(10, 2, 200); sheet.setValue(10, 3, 100); sheet.setValue(10, 4, 150); sheet.setValue(10, 5, 30); sheet .getCell(10, 1) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 2) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 3) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 4) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 5) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet .getCell(10, 6) .foreColor("#171717") .backColor("#ffffff") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.setFormula(4, 6, "=SUM(B5:F5)"); sheet.setFormula(5, 6, "=SUM(B6:F6)"); sheet.setFormula(6, 6, "=SUM(B7:F7)"); sheet.setFormula(7, 6, "=SUM(B8:F8)"); sheet.setFormula(8, 6, "=SUM(B9:F9)"); sheet.setFormula(9, 6, "=SUM(B10:F10)"); sheet.setFormula(10, 6, "=SUM(B11:F11)"); sheet.getRange(4, 1, 7, 6).formatter("$0.0"); }; const addPieContent = (sheet) => { sheet.addSpan(12, 0, 1, 4); sheet .getCell(12, 0) .value("Total Costs") .font("15px Times") .foreColor("#11114f") .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .vAlign(GC.Spread.Sheets.VerticalAlign.center); sheet.addSpan(13, 0, 9, 4); sheet.setFormula( 13, 0, '=PIESPARKLINE(G5:G11,"#dfe9fb","#d1dffa","#9bbaf3","#5c7ee6","#1346a4","#102565", "#ededed")' ); }; </script> <style scoped> .sample-tutorial { position: relative; height: 100%; overflow: hidden; } .sample-spreadsheets { width: calc(100% - 280px); height: 100%; overflow: hidden; float: left; } .options-container { float: right; width: 280px; padding: 12px; height: 100%; box-sizing: border-box; background: #fbfbfb; overflow: auto; } .option-row { font-size: 14px; padding: 5px; margin-top: 10px; } input { padding: 8px 14px; display: block; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; } #app { height: 100%; } </style>
<!DOCTYPE html> <html style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>SpreadJS VUE</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/ko/vue3/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/spread/source/js/FileSaver.js" type="text/javascript"></script> <script src="$DEMOROOT$/ko/vue3/node_modules/systemjs/dist/system.src.js"></script> <script src="./systemjs.config.js"></script> <script src="./compiler.js" type="module"></script> <script> var System = SystemJS; System.import("./src/app.js"); System.import('$DEMOROOT$/ko/lib/vue3/license.js'); </script> </head> <body> <div id="app"></div> </body> </html>
(function (global) { SystemJS.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, packageConfigPaths: [ './node_modules/*/package.json', "./node_modules/@mescius/*/package.json", "./node_modules/@babel/*/package.json", "./node_modules/@vue/*/package.json" ], map: { 'vue': "npm:vue/dist/vue.esm-browser.js", 'tiny-emitter': 'npm:tiny-emitter/index.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', "systemjs-babel-build": "npm:systemjs-plugin-babel/systemjs-babel-browser.js", '@mescius/spread-sheets': 'npm:@mescius/spread-sheets/index.js', '@mescius/spread-sheets-resources-ko': 'npm:@mescius/spread-sheets-resources-ko/index.js', '@mescius/spread-sheets-print': 'npm:@mescius/spread-sheets-print/index.js', '@mescius/spread-sheets-pdf': 'npm:@mescius/spread-sheets-pdf/index.js', '@mescius/spread-sheets-vue': 'npm:@mescius/spread-sheets-vue/index.js' }, meta: { '*.css': { loader: 'systemjs-plugin-css' }, '*.vue': { loader: "../plugin-vue/index.js" } } }); })(this);