如何使用 C++ 和 JavaScript 缩放工作表
Contents
[
Hide
]
可能的使用场景
缩放工作表在不同场景下可能具备不同用途,以下是一些常见的原因:
-
适应页面:确保所有内容在打印时适合单页或特定页数,更易于阅读和管理,无需翻页。
-
演示:让工作表看起来更有条理和专业,特别是在会议或报告中与他人分享时。
-
可读性:调整文本和其他元素的大小以提高可读性,尤其适用于阅读较小字体有困难的人群。
-
空间管理:优化工作表的空间利用,确保没有不必要的空白区域,所有重要信息都能在不需要大量滚动的情况下显示。
-
数据可视化:在图表和图形中,缩放可以帮助更易于理解,通过调整大小以适应可用空间。
-
一致性:在多个工作表或文档中保持一致的外观和感觉,在专业和教育环境中特别重要。
如何在Excel中缩放工作表
在Excel中缩放工作表可以帮助你在打印时将内容适配到一页或指定的页数。以下是缩放工作表的步骤:
-
打开你的工作表:打开你想要缩放的Excel工作表。
-
转到页面布局标签:在功能区中点击“页面布局”标签。
-
“缩放以适应”组:在“页面布局”标签中,找到“缩放以适应”组。这里有调整缩放的选项。宽度:允许你设置打印工作表的宽页数。高度:允许你设置打印工作表的高页数。缩放:你也可以在这里设置自定义的缩放百分比。

-
调整宽度和高度:设置为你需要的页数。例如,如果希望工作表在一页内显示,将两者都设置为1页。
-
调整缩放百分比(如果需要):如果偏好用具体的缩放百分比,可以调整“缩放”框。例如,将其设置为50%,将使内容变为原来的一半大小。
如何使用 C++ 和 JavaScript 缩放工作表
使用 C++ 的 Aspose.Cells for JavaScript 是一个强大的库,用于以编程方式处理 Excel 文件。要使用 Aspose.Cells 缩放工作表,您需要按照以下步骤操作:加载示例文件并调整打印设置,使内容适应所需的页数或特定比例。
示例:适合一页
<!DOCTYPE html>
<html>
<head>
<title>Aspose.Cells Fit To Page Example</title>
</head>
<body>
<h1>Fit Worksheet to One Page</h1>
<input type="file" id="fileInput" accept=".xls,.xlsx,.csv" />
<button id="runExample">Run Example</button>
<a id="downloadLink" style="display: none;">Download Result</a>
<div id="result"></div>
</body>
<script src="aspose.cells.js.min.js"></script>
<script type="text/javascript">
const { Workbook, SaveFormat, Utils } = AsposeCells;
AsposeCells.onReady({
license: "/lic/aspose.cells.enc",
fontPath: "/fonts/",
fontList: [
"arial.ttf",
"NotoSansSC-Regular.ttf"
]
}).then(() => {
console.log("Aspose.Cells initialized");
});
document.getElementById('runExample').addEventListener('click', async () => {
const fileInput = document.getElementById('fileInput');
if (!fileInput.files.length) {
document.getElementById('result').innerHTML = '<p style="color: red;">Please select an Excel file.</p>';
return;
}
const file = fileInput.files[0];
const arrayBuffer = await file.arrayBuffer();
// Instantiating a Workbook object from the uploaded file
const workbook = new Workbook(new Uint8Array(arrayBuffer));
// Access the first worksheet
const sheet = workbook.worksheets.get(0);
// Access the PageSetup object
const pageSetup = sheet.pageSetup;
// Set the worksheet to fit to 1 page wide and 1 page tall
pageSetup.fitToPagesWide = 1;
pageSetup.fitToPagesTall = 1;
// Saving the modified workbook and providing a download link
const outputData = workbook.save(SaveFormat.Xlsx);
const blob = new Blob([outputData]);
const downloadLink = document.getElementById('downloadLink');
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = 'output_fit_to_page.xlsx';
downloadLink.style.display = 'block';
downloadLink.textContent = 'Download Modified Excel File';
document.getElementById('result').innerHTML = '<p style="color: green;">Worksheet fitted to one page. Click the download link to get the modified file.</p>';
});
</script>
</html>
示例:按百分比缩放
<!DOCTYPE html>
<html>
<head>
<title>Aspose.Cells Example - Scale Worksheet</title>
</head>
<body>
<h1>Scale Worksheet Example</h1>
<input type="file" id="fileInput" accept=".xls,.xlsx,.csv" />
<button id="runExample">Run Example</button>
<a id="downloadLink" style="display: none;">Download Result</a>
<div id="result"></div>
</body>
<script src="aspose.cells.js.min.js"></script>
<script type="text/javascript">
const { Workbook, SaveFormat, Utils } = AsposeCells;
AsposeCells.onReady({
license: "/lic/aspose.cells.enc",
fontPath: "/fonts/",
fontList: [
"arial.ttf",
"NotoSansSC-Regular.ttf"
]
}).then(() => {
console.log("Aspose.Cells initialized");
});
document.getElementById('runExample').addEventListener('click', async () => {
const fileInput = document.getElementById('fileInput');
if (!fileInput.files.length) {
document.getElementById('result').innerHTML = '<p style="color: red;">Please select an Excel file.</p>';
return;
}
const file = fileInput.files[0];
const arrayBuffer = await file.arrayBuffer();
// Instantiating a Workbook object from the uploaded file
const workbook = new Workbook(new Uint8Array(arrayBuffer));
// Access the first worksheet
const sheet = workbook.worksheets.get(0);
// Access the PageSetup object
const pageSetup = sheet.pageSetup;
// Set the scaling to a specific percentage (e.g., 75%)
pageSetup.zoom = 75;
// Save the modified workbook and provide a download link
const outputData = workbook.save(SaveFormat.Xlsx);
const blob = new Blob([outputData]);
const downloadLink = document.getElementById('downloadLink');
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = 'output_scaled_percentage.xlsx';
downloadLink.style.display = 'block';
downloadLink.textContent = 'Download Scaled Workbook';
document.getElementById('result').innerHTML = '<p style="color: green;">Scaling applied successfully! Click the download link to get the modified file.</p>';
});
</script>
</html>