使用C++通过JavaScript添加WordArt水印到图表
Contents
[
Hide
]
您可以使用WordArt向电子表格添加特殊文本效果。例如,可以拉伸标题、装饰文本、使文本适应预设形状,或将受影响的文本应用到图表的绘图区作为水印。WordArt成为一个对象,您可以在电子表格中移动或定位以添加装饰。
以下示例显示如何向图表的绘图区添加WordArt形状作为水印。
以下示例显示如何为现有图表的绘图区添加WordArt形状作为水印。
<!DOCTYPE html>
<html>
<head>
<title>Aspose.Cells Example</title>
</head>
<body>
<h1>Aspose.Cells Example - Add WordArt Watermark to Chart</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 } = 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');
const resultDiv = document.getElementById('result');
if (!fileInput.files.length) {
resultDiv.innerHTML = '<p style="color: red;">Please select an Excel file.</p>';
return;
}
const file = fileInput.files[0];
const arrayBuffer = await file.arrayBuffer();
// Instantiate Workbook from uploaded file
const workbook = new Workbook(new Uint8Array(arrayBuffer));
// Access the first worksheet's first chart
const chart = workbook.worksheets.get(0).charts.get(0);
// Add a WordArt watermark (shape) to the chart's plot area
const wordart = chart.shapes.addTextEffectInChart(AsposeCells.MsoPresetTextEffect.TextEffect2,
"CONFIDENTIAL", "Arial Black", 66, false, false, 1200, 500, 2000, 3000);
// Get the shape's fill format and set transparency
const wordArtFormat = wordart.fill;
wordArtFormat.transparency = 0.9;
// Get the line format and set weight to invisible (0.0)
const lineFormat = wordart.line;
lineFormat.weight = 0.0;
// Save the modified workbook to a downloadable file
const outputData = workbook.save(SaveFormat.Xlsx);
const blob = new Blob([outputData], { type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" });
const downloadLink = document.getElementById('downloadLink');
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = 'output_out.xlsx';
downloadLink.style.display = 'block';
downloadLink.textContent = 'Download Modified Excel File';
resultDiv.innerHTML = '<p style="color: green;">WordArt watermark added successfully! Click the download link to get the modified file.</p>';
});
</script>
</html>