プレゼンテーション用の Node.js PowerPoint API
外部ソフトウェアを使用せずに、Node.js を使用して PowerPoint および OpenOffice プレゼンテーションを作成、読み取り、変更、変換します。
Download Free TrialAspose.Slides for Node.js via .NET は、Node.js で PowerPoint プレゼンテーションを作成、変更、変換できる Node.js ライブラリです。スライド、図形、テキスト、グラフ、表、画像など、すべてのプレゼンテーション要素をサポートします。また、プレゼンテーションの結合、複製、分割、比較、印刷など、多くの高度な機能も提供します。依存関係なしで動作し、短時間で何千ものプレゼンテーションを処理できます。
Aspose.Slides for Node.js via .NET は、次の一般的な機能を提供します。
- プレゼンテーションをロードし、開き、表示します。
- プレゼンテーションの編集。
- プレゼンテーション ファイルを PPT、PPTX、ODP などの一般的なプレゼンテーション形式に変換します。
- プレゼンテーションを PDF、JPG、HTML、GIF、SVG、その他多くの形式にエクスポートします。
- プレゼンテーションのレンダリングと印刷。
- プレゼンテーションの暗号化と復号化。プレゼンテーションのパスワード保護とパスワードの削除。
- マスター スライド、図形、チャート、ピクチャ フレーム、オーディオ フレーム、ビデオ フレーム、OLE、VBA マクロ、アニメーションなどのプレゼンテーション エンティティの操作。
- さらに多くの機能があります。
Node.js は、人気のある無料のオープンソースのクロスプラットフォーム JavaScript ランタイム環境で、開発者はブラウザの外部でコマンド ライン ツールやサーバーサイド スクリプトを作成できます。このため、Aspose.Slides チームは、 Aspose.Slides for Node.js を .NET 経由 で Node.js コミュニティに提供できることを誇りに思っています。
高度な 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 プラットフォームで実行できます。
インストールする方法
NPM を使用して、NPM パッケージ リポジトリからプレゼンテーション処理用の Node.js ライブラリをインストールします。 :
npm install aspose.slides.via.net
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();
}