Aspose.Slides.NET 16.8.0
Aspose.Slides is a PowerPoint management library for working with Microsoft PowerPoint files without using Microsoft PowerPoint. It allows developers to work with PPT, PPS, POT, PPTX, PPSX, POTX and ODP files on ASP.NET web applications, web services and Windows applications.
Showing the top 20 packages that depend on Aspose.Slides.NET.
Packages | Downloads |
---|---|
Finsa.CaravanCore
Package Description
|
25 |
Finsa.CaravanCore
Package Description
|
26 |
Finsa.CaravanCore
Package Description
|
27 |
Finsa.CaravanCore
Package Description
|
30 |
Finsa.CaravanCore
Package Description
|
35 |
Finsa.CaravanCore
Package Description
|
38 |
Finsa.CaravanCore
Package Description
|
57 |
Finsa.CaravanCore
Package Description
|
69 |
Finsa.CaravanCore
Package Description
|
78 |
Finsa.CaravanCore
Package Description
|
91 |
Finsa.CaravanCore
Package Description
|
103 |
Finsa.CaravanCore
Package Description
|
111 |
Finsa.CaravanCore
Package Description
|
158 |
Finsa.CaravanCore
Package Description
|
182 |
Finsa.CaravanCore
Package Description
|
293 |
Finsa.CaravanCore
Package Description
|
388 |
Finsa.CaravanCore
Package Description
|
478 |
Finsa.CaravanCore
Package Description
|
1,263 |
Finsa.CaravanCore
Package Description
|
2,168 |
Minor Features
SLIDESNET-37787 - Implementation of ClassIdentifier Property
SLIDESNET-37760 - Support removing embedded fonts in the PowerPoint
SLIDESNET-37738 - Implementation of OpenDocument presentation template
SLIDESNET-37737 - Export to Responsive HTML format
SLIDESNET-37537 - Support for removing embedded fonts from presentation
SLIDESNET-36731 - Possibility to obtain effective TextFrameFormat value
SLIDESNET-36720 - Support for fixed HTML export in Aspose.Slides
Other Improvements and Changes
Bug Fixes
SLIDESNET-37786 - Cloning creates two slide instead of one
SLIDESNET-37764 - Incorrect rendering of Presentation containing Metafiles
SLIDESNET-37759 - Exception while pptx to pdf conversion
SLIDESNET-37757 - Losing sound on ppt presentation saving
SLIDESNET-37755 - Text color changes after converting pptx to pdf
SLIDESNET-37753 - Wrong bullet number rendered for exported PDF
SLIDESNET-37742 - Presentation repair message appear on converting PPTX to ODP
SLIDESNET-37734 - Image changes after conversion to pdf
SLIDESNET-37732 - Exception on the pptx presentation loading
SLIDESNET-37724 - Exception on loading pptx
SLIDESNET-37720 - Value cannot be null on saving PPT presentation
SLIDESNET-37714 - Underline Color Improperly read
SLIDESNET-37709 - Hyperlink removed after saving ppt
SLIDESNET-37701 - Exception on exporting pptx to ppt
SLIDESNET-37700 - Background improperly rendered in generated svg
SLIDESNET-37699 - Missing Text and error after converting to svg
SLIDESNET-37691 - Underline improperly rendered in generated thumbnail
SLIDESNET-37687 - Jpeg image in Html is different comparing to source Ppt
SLIDESNET-37684 - Font changes without MsOffice while generating Thumbnails
SLIDESNET-37683 - PDF notes are not rendering for ppt file
SLIDESNET-37682 - Shape's size doesn't change if layouted text doesn't fit it when fonts substitution take place
SLIDESNET-37681 - Chart changes after cloning pptx
SLIDESNET-37672 - Slide background color changes after saving ppt
SLIDESNET-37666 - Slide to svg conversion: Slides colors are changed after saving pptx to svg
SLIDESNET-37662 - OverflowException on swf rendering
SLIDESNET-37658 - Inaccurate word count for a PPT document with Aspose.Slides
SLIDESNET-37655 - Borders around equations and charts appearing on saving presentation
SLIDESNET-37649 - Wrong text wrapping in generated Pdf
SLIDESNET-37625 - Pptx Read Exception: Unable to read beyond the end of the stream on loading presentation
SLIDESNET-37519 - Substitution font for CJK symbols differs from PP
SLIDESNET-37431 - An entry with the same key already exists exception on presentation load
SLIDESNET-37330 - Extract text from Notes Master page using Slides fails
SLIDESNET-37329 - Extract text from Handout Master page using Aspose.Slides fails
SLIDESNET-37298 - PDF notes are not rendering for ppt file
SLIDESNET-37254 - Data sheet can not be edited after slide cloning
Public API Changes
CreateTextFrameFormatEffective() method has been added to ITextFrame interface and TextFrame class
It returns an effective value of text frame format for a TextFrame object. The returned type is ITextFrameFormatEffective.
Interface Aspose.Slides.ITextFrameFormatEffective has been added
Represents effective values (formatting values with inheritance applied) of text frame format. It contains the following members:
ITextStyleEffectiveData TextStyle � Returns effective text's style.
double MarginLeft � Returns the left margin (points) in a TextFrame.
double MarginRight � Returns the right margin (points) in a TextFrame.
double MarginTop � Returns the top margin (points) in a TextFrame.
double MarginBottom � Returns the bottom margin (points) in a TextFrame.
bool WrapText � Returns if text is wrapped at TextFrame's margins.
TextAnchorType AnchoringType � Returns vertical anchor text in a TextFrame.
bool CenterText � Returns if text should be centered in box horizontally.
TextVerticalType TextVerticalType � Returns text orientation.
TextAutofitType AutofitType � Returns text autofit mode.
Interface Aspose.Slides.ITextStyleFormatEffective has been added
Represents effective values (formatting values with inheritance applied) of text style. It contains the following members:
IParagraphFormatEffectiveData GetLevel(int index) � Returns level of effective style.
IParagraphFormatEffectiveData DefaultParagraphFormat � Returns effective default paragraph properties.
EmbeddedWoffFontsHtmlController and EmbeddedEotFontsHtmlController classed have been added to provide the functionality to embed WOFF and EOT fonts into generated HTML documents
The two new classes have been added to provide the functionality to embed WOFF and EOT fonts into generated HTML documents:
EmbeddedWoffFontsHtmlController
EmbeddedEotFontsHtmlController
Below there is an example of how to use the new EmbeddedWoffFontsHtmlController class to export HTML with embedded WOFF fonts:
using (Presentation pres = new Presentation("pres.pptx"))
{
EmbeddedWoffFontsHtmlController controller = new EmbeddedWoffFontsHtmlController();
HtmlOptions htmlOptions = new HtmlOptions
{
HtmlFormatter = HtmlFormatter.CreateCustomFormatter(controller)
};
pres.Save("pres.html", SaveFormat.Html, htmlOptions);
}
New methods have been added to FontsManager
The following new methods have been added to IFontsManager interface and FontsManager class:
IFontData[] GetEmbeddedFonts() - this method returns fonts embedded in a presentation.
void RemoveEmbeddedFont(IFontData fontData) - this method removes an embedded font from a presentation.
The following sample demonstrates an use case for these new methods:
// load a presentation with embedded "FunSized" font
using (Presentation pres = new Presentation("pres.ppt"))
{
// render a slide that contains a text frame that uses embedded "FunSized"
pres.Slides[0].GetThumbnail(new Size(960, 720)).Save("pres-1.png", ImageFormat.Png);
IFontsManager fontsManager = pres.FontsManager;
// get all embedded fonts
IFontData[] embeddedFonts = fontsManager.GetEmbeddedFonts();
// find "FunSized" font
IFontData funSizedEmbeddedFont = Array.Find(embeddedFonts, delegate(IFontData data)
{
return data.FontName == "FunSized";
});
// remove "FunSized" font
fontsManager.RemoveEmbeddedFont(funSizedEmbeddedFont);
// render the presentation; removed "FunSized" font is replaced to an existing one
pres.Slides[0].GetThumbnail(new Size(960, 720)).Save("pres-2.png", ImageFormat.Png);
// save the presentation without embedded "FunSized" font
pres.Save("37537-2.ppt", SaveFormat.Ppt);
}
New responsive HTML controller has been added
The new class ResponsiveHtmlController has been added to provide the possibility to generate responsive HTML files.
This controller can be used in the same manner as other HTML controllers:
using (var pres = new Presentation("pres.pptx"))
{
ResponsiveHtmlController controller = new ResponsiveHtmlController();
HtmlOptions htmlOptions = new HtmlOptions
{ HtmlFormatter = HtmlFormatter.CreateCustomFormatter(controller) };
pres.Save("pres.html", SaveFormat.Html, htmlOptions);
}
Otp value has been added to LoadFormat and SaveFormat enumerations
The new Otp value has been added to Aspose.Slides.LoadFormat and Aspose.Slides.SaveFormat enumerations. This value represents the OpenOffice OTP Presentation template format.
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
25.9.0 | 0 | 09/03/2025 |
25.8.0 | 5 | 08/08/2025 |
25.7.0 | 4 | 07/02/2025 |
25.6.0 | 7 | 06/14/2025 |
25.5.0 | 16 | 05/19/2025 |
25.4.0 | 11 | 04/23/2025 |
25.3.0 | 16 | 03/07/2025 |
25.2.0 | 12 | 02/12/2025 |
25.1.0 | 14 | 01/17/2025 |
24.12.0 | 15 | 12/10/2024 |
24.11.0 | 16 | 11/14/2024 |
24.10.0 | 13 | 10/09/2024 |
24.9.0 | 13 | 09/12/2024 |
24.8.0 | 16 | 08/05/2024 |
24.7.0 | 14 | 07/18/2024 |
24.6.0 | 16 | 06/17/2024 |
24.5.0 | 20 | 05/12/2024 |
24.4.0 | 18 | 04/18/2024 |
24.3.0 | 20 | 03/16/2024 |
24.2.0 | 23 | 03/10/2024 |
24.1.0 | 24 | 02/08/2024 |
23.12.0 | 22 | 02/08/2024 |
23.11.0 | 21 | 02/08/2024 |
23.10.0 | 20 | 02/08/2024 |
23.9.0 | 19 | 02/08/2024 |
23.8.0 | 20 | 02/08/2024 |
23.7.0 | 19 | 02/08/2024 |
23.6.0 | 21 | 02/08/2024 |
23.5.0 | 18 | 02/08/2024 |
23.4.0 | 22 | 02/08/2024 |
23.3.1 | 18 | 02/08/2024 |
23.2.0 | 23 | 02/08/2024 |
23.1.0 | 20 | 02/08/2024 |
22.12.0 | 21 | 02/08/2024 |
22.11.0 | 22 | 02/08/2024 |
22.10.0 | 24 | 02/08/2024 |
22.9.0 | 20 | 02/08/2024 |
22.8.0 | 20 | 09/08/2022 |
22.7.0 | 39 | 08/30/2022 |
22.6.0 | 25 | 02/08/2024 |
22.5.0 | 22 | 02/08/2024 |
22.4.0 | 19 | 02/08/2024 |
22.3.0 | 19 | 02/08/2024 |
22.2.0 | 424 | 02/18/2022 |
22.1.0 | 19 | 02/08/2024 |
21.12.0 | 19 | 02/08/2024 |
21.11.0 | 135 | 12/07/2021 |
21.10.0 | 29 | 11/09/2021 |
21.9.0 | 312 | 10/01/2021 |
21.8.0 | 816 | 09/10/2021 |
21.7.0 | 321 | 07/15/2021 |
21.6.0 | 22 | 06/17/2021 |
21.5.0 | 523 | 05/18/2021 |
21.4.0 | 242 | 04/18/2021 |
21.3.0 | 1,722 | 03/30/2021 |
21.2.0 | 22 | 02/08/2024 |
21.1.0 | 21 | 02/08/2024 |
20.12.0 | 25 | 02/08/2024 |
20.11.1 | 20 | 02/08/2024 |
20.11.0 | 18 | 02/08/2024 |
20.10.0 | 21 | 02/08/2024 |
20.9.0 | 18 | 02/08/2024 |
20.8.0 | 20 | 02/08/2024 |
20.7.0 | 22 | 02/08/2024 |
20.6.0 | 22 | 02/08/2024 |
20.5.0 | 20 | 02/08/2024 |
20.4.0 | 21 | 02/08/2024 |
20.3.0 | 22 | 02/08/2024 |
20.2.0 | 24 | 02/08/2024 |
20.1.0 | 21 | 02/08/2024 |
19.12.0 | 19 | 02/08/2024 |
19.11.0 | 22 | 02/08/2024 |
19.10.0 | 19 | 02/08/2024 |
19.9.0 | 23 | 02/08/2024 |
19.8.0 | 20 | 02/08/2024 |
19.7.0 | 21 | 02/08/2024 |
19.6.0 | 19 | 02/08/2024 |
19.5.0 | 20 | 02/08/2024 |
19.4.0 | 21 | 02/08/2024 |
19.3.0 | 22 | 02/08/2024 |
19.2.0 | 22 | 02/08/2024 |
19.1.0 | 22 | 02/08/2024 |
18.12.0 | 21 | 02/08/2024 |
18.11.0 | 21 | 02/08/2024 |
18.10.0 | 24 | 02/08/2024 |
18.9.0 | 19 | 02/08/2024 |
18.8.0 | 20 | 02/08/2024 |
18.7.0 | 20 | 02/08/2024 |
18.6.0 | 21 | 02/08/2024 |
18.5.0 | 19 | 02/08/2024 |
18.4.0 | 20 | 02/08/2024 |
18.3.0 | 20 | 02/08/2024 |
18.2.1 | 20 | 02/08/2024 |
18.2.0 | 24 | 02/08/2024 |
18.1.0 | 21 | 02/08/2024 |
17.12.1 | 18 | 02/08/2024 |
17.12.0 | 18 | 02/08/2024 |
17.11.0 | 21 | 02/08/2024 |
17.10.0 | 23 | 02/08/2024 |
17.9.1 | 23 | 02/08/2024 |
17.9.0 | 20 | 02/08/2024 |
17.8.0 | 22 | 02/08/2024 |
17.7.0 | 20 | 02/08/2024 |
17.6.0 | 22 | 02/08/2024 |
17.5.0 | 19 | 02/08/2024 |
17.4.0 | 21 | 02/08/2024 |
17.3.0 | 18 | 02/08/2024 |
17.2.0 | 21 | 02/08/2024 |
17.1.0 | 19 | 02/08/2024 |
16.12.1 | 21 | 02/08/2024 |
16.12.0 | 23 | 02/08/2024 |
16.11.0 | 19 | 02/08/2024 |
16.10.0 | 19 | 02/08/2024 |
16.9.0 | 21 | 02/08/2024 |
16.8.0 | 19 | 02/08/2024 |
16.7.0 | 21 | 03/10/2024 |
16.6.0 | 22 | 02/08/2024 |
16.5.0 | 21 | 02/08/2024 |
16.4.0 | 22 | 02/08/2024 |
16.3.0 | 20 | 02/08/2024 |
16.2.0 | 24 | 02/08/2024 |
16.1.0 | 19 | 02/08/2024 |
15.11.0 | 21 | 02/08/2024 |
15.10.0 | 25 | 02/08/2024 |
15.9.0 | 22 | 02/08/2024 |
15.8.1 | 23 | 02/08/2024 |
15.8.0 | 22 | 02/08/2024 |
15.7.0 | 24 | 02/08/2024 |
15.6.0 | 20 | 02/08/2024 |
15.5.0 | 23 | 02/08/2024 |
15.4.0 | 23 | 02/08/2024 |
15.3.1 | 21 | 02/08/2024 |
15.3.0 | 22 | 02/08/2024 |
15.2.0 | 20 | 02/08/2024 |
15.1.0 | 20 | 02/08/2024 |
14.10.0 | 20 | 02/08/2024 |
14.9.0 | 23 | 02/08/2024 |
14.8.1 | 18 | 02/08/2024 |
14.8.0 | 21 | 02/08/2024 |
14.7.0 | 23 | 02/08/2024 |
14.6.0 | 21 | 02/08/2024 |
14.5.0 | 20 | 02/08/2024 |
14.4.0 | 22 | 02/08/2024 |
14.3.0 | 23 | 02/08/2024 |
14.2.0 | 26 | 02/08/2024 |
14.1.2 | 38 | 02/08/2024 |
14.1.1 | 25 | 02/08/2024 |
14.1.0.2 | 20 | 02/08/2024 |
13.12.0 | 22 | 02/08/2024 |
8.4.2 | 23 | 02/08/2024 |
8.4.1 | 21 | 02/08/2024 |
8.4.0 | 21 | 02/08/2024 |
8.3.0.1 | 19 | 02/08/2024 |
8.2.0 | 35 | 02/08/2024 |
8.1.0 | 22 | 02/08/2024 |
8.0.0 | 19 | 02/08/2024 |
7.9.0 | 19 | 02/08/2024 |
7.8.0 | 19 | 02/08/2024 |
7.7.0 | 38 | 02/08/2024 |
7.6.0 | 22 | 02/08/2024 |
7.5.0 | 21 | 02/08/2024 |
7.4.0 | 21 | 02/08/2024 |
7.3.0 | 20 | 02/08/2024 |
7.2.0 | 20 | 02/08/2024 |
7.1.0 | 23 | 02/08/2024 |
7.0.0 | 22 | 02/08/2024 |
6.9.0 | 23 | 02/08/2024 |
6.8.0 | 25 | 02/08/2024 |
6.7.0 | 21 | 02/08/2024 |
6.6.0 | 20 | 02/08/2024 |
6.5.0 | 20 | 02/08/2024 |
6.4.0 | 18 | 02/08/2024 |
6.3.0 | 20 | 02/08/2024 |
6.2.0 | 19 | 02/08/2024 |
6.1.0 | 23 | 02/08/2024 |
6.0.0 | 19 | 02/08/2024 |
5.9.0.1 | 21 | 02/08/2024 |
5.9.0 | 22 | 02/08/2024 |