用於演示的 Node.js PowerPoint API
使用 Node.js 創建、閱讀、修改和轉換 PowerPoint 和 OpenOffice 演示文稿,無需任何外部軟件。
Download Free TrialAspose.Slides for Node.js via .NET 是一個 Node.js 函式庫,可讓您在 Node.js 中建立、修改和轉換 PowerPoint 簡報。它支援所有簡報元素,例如幻燈片、形狀、文字、圖表、表格、圖像等。它還提供許多高級功能,例如合併、克隆、分割、比較和列印簡報。它的工作沒有任何依賴性,可以在短時間內處理數千個簡報。
Aspose.Slides for Node.js via .NET 提供以下流行功能:
- 加載、打開和查看演示文稿。
- 編輯演示文稿。
- 將演示文稿文件轉換為流行的演示文稿格式,例如 PPT、PPTX 和 ODP。
- 將演示文稿導出為 PDF、JPG、HTML、GIF、SVG 和許多其他格式。
- 渲染和打印演示文稿。
- 加密和解密演示文稿;密碼保護演示文稿並刪除密碼。
- 操作演示實體,例如主幻燈片、形狀、圖表、圖片框架、音頻框架、視頻框架、OLE、VBA 宏、動畫等。
- 還有更多功能。
Node.js 是一種流行的、免費的、開源的、跨平台的 JavaScript 執行環境,允許開發人員在瀏覽器之外編寫命令列工具和伺服器端腳本。因此,Aspose.Slides 團隊很自豪能夠向 Node.js 社群提供Aspose.Slides for Node.js via .NET。
高級 Node.js PowerPoint API 功能
從模板創建或克隆現有幻燈片
通過 API 使用 PowerPoint 表格
應用或刪除形狀上的保護
將 Excel 圖表作為 OleObject 到幻燈片
創建形狀幻燈片上的形狀添加文本
處理文本和形狀格式
從數據庫生成演示文稿
保護演示並生成的 PDF
在物理打印機上打印演示文稿
系統要求
- Aspose.Slides for Node.js via .NET 是基於 Node.js 的伺服器端 JavaScript API。它可以在.NET6或更高版本的Windows、Unix/Linux和Mac平台上運行。
如何在 Node.js 中創建新的 PowerPoint 演示文稿
在下面給出的示例中,我們在演示文稿的第一張幻燈片中添加了一個矩形。
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat, ShapeType } = asposeSlides;
var pres = new Presentation();
try
{
var slide = pres.slides.get(0);
slide.shapes.addAutoShape(ShapeType.Rectangle, 50, 150, 300, 200);
pres.save("pres.pptx", SaveFormat.Pptx);
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中新增/刪除/複製投影片並編輯形狀屬性
此 Node.js 程式碼向您展示如何編輯各種屬性和複製投影片:
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, BackgroundType, FillType, ImageFormat } = asposeSlides;
var pres = new Presentation();
try
{
// Add an empty slide to the presentation
pres.slides.addEmptySlide(pres.layoutSlides.get(0));
// Create another presentation and add its clone into the pres
var pres2 = new Presentation();
pres.slides.addClone(pres2.slides.get(0));
// Access and modify properties of the first slide in pres
var slide = pres.slides.get(0); // Get the first slide
var slideNumber = slide.slideNumber; // Get slide number
var hidden = slide.hidden; // Check if the slide is hidden
// Set the background of the first slide
slide.background.type = BackgroundType.OwnBackground; // Set background type
slide.background.fillFormat.fillType = FillType.Solid; // Set fill type to solid
slide.background.fillFormat.solidFillColor.color = "#AEC025F4"; // Set a solid fill color
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中將 PowerPoint 轉換為 PDF
此 Node.js 程式碼向您展示如何將 PowerPoint 轉換為 PDF 文件
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("pres.pptx");
try
{
pres.save("pres.pdf", SaveFormat.Pdf);
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中將 PowerPoint 轉換為 GIF
此 Node.js 程式碼向您展示如何將 PowerPoint 轉換為 GIF 影像
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("pres.pptx");
try
{
pres.save("pres.gif", SaveFormat.Gif);
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中將 PowerPoint 轉換為 HTML
此 Node.js 程式碼向您展示如何將 PowerPoint 轉換為 HTML 文件
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("pres.pptx");
try
{
pres.save("pres.html", SaveFormat.Html);
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中將 PowerPoint 轉換為 ODP
此 Node.js 程式碼向您展示如何將 PowerPoint 轉換為 ODP 文檔
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres = new Presentation("pres.pptx");
try
{
pres.save("pres.odp", SaveFormat.Odp);
}
finally
{
if (pres != null) pres.dispose();
}
如何在 Node.js 中合併演示文稿
此 Node.js 代碼向您展示瞭如何合併演示文稿:
const asposeSlides = require('aspose.slides.via.net');
const { Presentation, SaveFormat } = asposeSlides;
var pres1 = new Presentation("pres1.pptx");
var pres2 = new Presentation("pres2.pptx");
try
{
for (var i = 0; i < pres2.slides.length; i++)
{
pres1.slides.addClone(pres2.slides.get(i));
}
pres1.save("combinedPresentation.pptx", SaveFormat.Pptx);
}
finally
{
if (pres1 != null) pres1.dispose();
if (pres2 != null) pres2.dispose();
}
如何檢索 PowerPoint 簡報的各種屬性
以下範例向您展示如何檢索 PowerPoint 簡報的各種屬性。
const asposeSlides = require('aspose.slides.via.net');
const { Presentation } = asposeSlides;
var pres = new Presentation("pres.pptx");
try
{
// Retrieve various properties of the presentation
var countSlides = pres.slides.count; // Total number of slides
var countMastersSlides = pres.masters.count; // Total number of master slides
var countLayoutSlides = pres.layoutSlides.count; // Total number of layout slides
var firstSlideNumber = pres.firstSlideNumber; // Number of the first slide
var lastView = pres.viewProperties.lastView; // Last view type of the presentation
var masterThemeName = pres.masterTheme.name; // Name of the master theme
var sourceFormat = pres.sourceFormat; // Format of the source presentation
var countVideos = pres.videos.count; // Total number of videos in the presentation
var countImages = pres.images.count; // Total number of images in the presentation
// Retrieve objects for further manipulation or information extraction
var slideObject = pres.slides.get(0); // Object of the first slide
var mastersSlideObject = pres.masters.get(0); // Object of the first master slide
// Log the total number of slides to the console
console.log("countSlides:" + countSlides);
console.log("countMastersSlides:" + countMastersSlides);
console.log("countLayoutSlides:" + countLayoutSlides);
console.log("firstSlideNumber:" + firstSlideNumber);
console.log("lastView=" + lastView);
console.log("masterThemeName:" + masterThemeName);
console.log("sourceFormat:" + sourceFormat);
console.log("countVideos:" + countVideos);
console.log("countImages:" + countImages);
}
finally
{
if (pres != null) pres.dispose();
}