ShapeCrawler (formerly SlideDotNet) is a .NET library for manipulating PowerPoint presentations. It provides a simplified object model on top of the Open XML SDK, allowing users to process presentations without having Microsoft Office installed.
install-package ShapeCrawler
// open existing presentation
var pres = new Presentation("some.pptx");
var shapes = pres.Slides[0].Shapes;
// get number of shapes on slide
var shapesCount = shapes.Count;
// get text
var shape = shapes.GetByName("TextBox 1");
var text = shape.TextFrame!.Text;
// create a new presentation
var pres = new Presentation();
var shapes = pres.Slides[0].Shapes;
// add new shape
shapes.AddRectangle(x: 50, y: 60, width: 100, height: 70);
var addedShape = shapes.Last();
addedShape.TextFrame!.Text = "Hello World!";
pres.SaveAs("my_pres.pptx");
Visit the Wiki page to find more usage samples.
To access prerelease builds from master
branch, add https://www.myget.org/F/shape/api/v3/index.json
as a package source:
If you have a question:
- Join our Discussions Forum and open a discussion;
- You can always email the author at theadamo86@gmail.com
Give a star⭐ if you find this useful, please give it a star to show your support.
If you encounter an issue, report the bug on the issue page.
To be able to reproduce a bug, it's often necessary to have the original presentation file attached to the issue description. If this file contains confidential data and cannot be shared publicly, you can securely send it to theadamo86@gmail.com. Of course, if your security policy allow this. We assure you that only the maintainer will access this file, and it will not be shared publicly.
Pull Requests are welcome! Please read the Contribution Guide for more details.
🍀Added support for the SVG format for the method ISlideShapes.AddPicture()
#350
🐞Fixed not displaying a picture added using the method ISlideShapes.AddPicture()
#649
🐞Fixed adding picture with high resolution #683
Visit CHANGELOG.md to see the full log.