C# REST API を使用して PowerPoint に画像を追加する

このガイドに従って、C# REST API を使用して PowerPoint に画像を追加する方法 を学習します。.NET ベースの Cloud SDK を使用して、C# Low Code API を使用して PowerPoint に画像を追加する方法 を学習します。この記事では、スライドに追加する前に画像をカスタマイズするためのさまざまなプロパティについて説明します。

前提条件

C# .NET ベースの API を使用して PowerPoint に画像を追加する手順

  1. SlidesApi オブジェクトをインスタンス化してスライドに画像を挿入します
  2. 画像を追加する対象のプレゼンテーションファイルをアップロードします
  3. 必要な形式で画像データを準備する
  4. スライドに配置するためのPictureFrameオブジェクトを作成する
  5. 特定のスライドに画像を挿入するには、CreateShape メソッドを呼び出します。
  6. 画像を追加した後ファイルをダウンロードする

これらの手順は、C# REST インターフェイスを使用して PowerPoint に画像を追加する方法をまとめたものです。ソース プレゼンテーションをクラウド ストレージにアップロードし、Convert 名前空間の ToBase64String() メソッドを使用して画像を準備し、この画像を使用して PictureFrame オブジェクトを作成します。最後に、CreateShape() メソッドを呼び出して、指定されたスライドに画像を追加し、更新されたプレゼンテーションをダウンロードします。

C# REST API を使用して PowerPoint スライドに画像を追加するコード

using Aspose.Slides.Cloud.Sdk;
using Aspose.Slides.Cloud.Sdk.Model;
using System;
using System.Diagnostics;
using System.IO;
namespace SlideModification
{
class SlideEditor
{
static void Main(string[] args)
{
// Initialize the Slides API client with user credentials.
var slidesClient = new SlidesApi("User ID", "Key");
// Upload the presentation file to the cloud.
var uploadResponse = slidesClient.UploadFile(
"Presentation.pptx",
new MemoryStream(File.ReadAllBytes("Presentation.pptx")));
// Read image
var imageBytes = File.ReadAllBytes("ImageFile.png");
var base64Image = Convert.ToBase64String(imageBytes);
// Define the image properties and position.
var imageShape = new PictureFrame
{
X = 50,
Y = 50,
Width = 350,
Height = 250,
PictureFillFormat = new PictureFill
{
Base64Data = base64Image,
PictureFillMode = PictureFill.PictureFillModeEnum.Stretch
}
};
// Add the image to the third slide of the presentation.
var shapeResponse = slidesClient.CreateShape("Presentation.pptx", 3, imageShape);
// Output the URI of the newly added image shape.
Debug.WriteLine($"Image added at: {shapeResponse.SelfUri.Href}");
// Download the modified presentation file.
using (var downloadedFile = slidesClient.DownloadFile("Presentation.pptx"))
using (var fileStream = new FileStream("UpdatedPresentation.pptx", FileMode.Create, FileAccess.Write))
{
downloadedFile.CopyTo(fileStream);
}
Console.WriteLine("Image successfully added to the slide.");
}
}
}

このサンプル コードは、C# RESTful サービスを使用して PowerPoint に画像を配置する方法 を示しています。PictureFrame オブジェクトの X プロパティと Y プロパティを設定することで画像の開始位置を定義し、PictureFill クラス オブジェクトを使用して画像の塗りつぶしモードを定義できます。PictureFrame プロパティは、元のサイズに関係なく、スライド上の画像のサイズを定義します。

この記事では、画像を追加する方法を説明しました。プレゼンテーションにメモを追加するには、C# REST API を使用して PowerPoint スライドにメモを追加する の記事を参照してください。

 日本語