Follow this article to create custom shapes in PowerPoint with C# REST API. You will learn to automatically create and add custom shapes for PowerPoint with C# RESTful Service. It shares all the details to create a shape, set its parameters, and add to a particular slide.
Prerequisite
Download Aspose.Slides Cloud SDK for Dotnet for inserting shapes in slides
Setup C# project with the above SDK to create a shape
Steps to Add PPT Shape with C# REST API
- Create the SlidesApi object and upload the source presentation for adding shapes to it
- Specify that the slide type to modify is a Master Slide
- Create a new shape object with specific properties
- Add the new shape to the specified slide using the CreateSpecialSlideShape() method
- Download the updated presentation file with the new shape in it
These steps explain how to generate presentation shapes with C# REST API. Create the SlidesApi object, upload the presentation to the Cloud storage, specify the type of slide to be modified, and instantiate the Shape object using the desired parameters. Add the shape to the master slide and download the updated presentation with the new shape in it.
Code to Add Shape for PPT with C# REST Interface
using Aspose.Slides.Cloud.Sdk; | |
using Aspose.Slides.Cloud.Sdk.Model; | |
using System.IO; | |
namespace AsposeTestCodes | |
{ | |
class Program | |
{ | |
static void Main(string[] args) // For adding custom shape | |
{ | |
SlidesApi slidesApi = new SlidesApi("API Key", "Secret"); | |
// Upload the presentation file to Aspose cloud storage | |
FilesUploadResult uploadResult = slidesApi.UploadFile("SamplePresentation.pptx", new MemoryStream(File.ReadAllBytes("SamplePresentation.pptx")));//Source presentation | |
// Define the file name of the uploaded presentation | |
string fileName = "SamplePresentation.pptx"; | |
// Specify that the slide type to modify is a Master Slide | |
SpecialSlideType slideType = SpecialSlideType.MasterSlide; | |
// Create a new shape object with specific properties | |
Shape dto = new Shape | |
{ | |
X = 100, // X-coordinate for the position of the shape | |
Y = 100, // Y-coordinate for the position of the shape | |
Width = 500, // Width of the shape | |
Height = 200, // Height of the shape | |
ShapeType = GeometryShape.ShapeTypeEnum.Rectangle, // Define the shape type as a rectangle | |
Text = "New shape" // Text content to be displayed within the shape | |
}; | |
// Add the new shape to the specified slide (master slide at index 1) and retrieve the created shape | |
Shape shape = (Shape)slidesApi.CreateSpecialSlideShape(fileName, 1, slideType, dto); | |
Stream stream = slidesApi.DownloadFile(fileName); | |
// Save the downloaded presentation file locally with a new name ("PresWithShape.pptx") | |
var fs = new FileStream("PresWithShape.pptx", FileMode.Create, FileAccess.Write); // Create a file stream for saving | |
stream.CopyTo(fs); // Copy the content of the downloaded file into the file stream | |
} | |
} | |
} |
This code demonstrates how to handle shapes for slides with C# RESTful Service. You may add any type of shapes using the enumerator GeometryShape.ShapeTypeEnum including Lines, Triangle, Rectangle, and Diamond etc. The option is also available to select other special types of slides such as LayoutSlide and NotesSlide.
This article has taught us to draw shapes on a slide. To add pictures, refer to the article Add Picture to PowerPoint with C# REST API.