Aspose.Slides.NET 16.12.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

SLIDESNET-38070 Set distance between tick mark on horizontal axis SLIDESNET-37941 Getting duration of extracted video from presentation SLIDESNET-38126 ArgumentException on saving presentation SLIDESNET-38124 Missing slides while converting pptx to pdf SLIDESNET-38122 KeyNotFoundException on loading presentation SLIDESNET-38118 Chart is improperly rendered in generated SVG SLIDESNET-38114 Presentation not saving SLIDESNET-38112 Exception on saving presentation SLIDESNET-38108 Exception on loading presentation SLIDESNET-38094 Wrong Data Table offset and legend key size SLIDESNET-38089 Ppt size increase after saving SLIDESNET-38078 Presentation changed after saving SLIDESNET-38073 Fill of an object change after saving ppt SLIDESNET-38072 Header Footer removed after saving ppt SLIDESNET-38068 Ppt changed after saving SLIDESNET-38065 Font changes from Calibri to MS PGothic after saving ppt SLIDESNET-38064 Exception on saving presentation SLIDESNET-38060 Pptx changed after converting to pdf SLIDESNET-38057 Font changed from Calibri to Arial after saving presentation SLIDESNET-38049 Hyperlink removed after saving ppt SLIDESNET-38047 Line style was changed after saving ppt SLIDESNET-38046 Arc Drawing is removed after saving ppt SLIDESNET-38042 Shapes do not clipped during render if they are outside of a chart area SLIDESNET-38037 a * character is added to each slide after saving ppt SLIDESNET-38036 NotImplementedException on saving presentation SLIDESNET-38006 Powerpoint slide to png conversion issue SLIDESNET-38001 Evaluation watermark showing up in powerpoint files SLIDESNET-37990 High memory consumption while converting pptm to pdf SLIDESNET-37988 Date and slide number are lost in the footer of resaved PPTX to PPT during thumbnail generation SLIDESNET-37981 Different Footers placeholders recognized in ppt and pptx SLIDESNET-37980 Missing table on Notes Master SLIDESNET-37975 Exception on saving presentation SLIDESNET-37936 Font type changes after converting pptx to png SLIDESNET-37929 Incorrect character positioning in HTML representation of the presentation document in Safari for iOS SLIDESNET-37923 Images are less clear after converting Pptx to html SLIDESNET-37855 Quality of image changes after exporting to svg SLIDESNET-37601 Chart data fail to open in Edit mode on saving presentaiton SLIDESNET-37518 Links are not preserved for added ole frame SLIDESNET-37326 PptxReadException while loading presentation SLIDESNET-37293 Incorrect text rendering with slide cloning SLIDESNET-37144 Text rendered incorrectly in PDF SLIDESNET-37136 Bubble chart is drawing wrong on thumbnail generated from pptx SLIDESNET-37081 Highlight missing in generated PDF SLIDESNET-37024 PptxReadException thrown on loading pptx SLIDESNET-36778 The chart axis labels appear differently after saving SLIDESNET-36699 Chart is improperly rendered in generated thumbnail SLIDESNET-36571 The chart is rendered half of its width in thumbnail and PDF SLIDESNET-35946 Wrong display units for value axis for Scatter chart in exported PDF SLIDESNET-35563 The value axis values direction changes in exported PDF SLIDESNET-35549 Bullet Text are not coming fine after conversion from PPT to PDF SLIDESNET-35355 PPTX to PNG Conversion: Chart Missing in the generated PPTX file SLIDESNET-34061 Category axis values scales are different in generated PDF Public API Changes Aspose.Slides.Metered class has been added Aspose.Slides.Metered class has been added. It provides methods to set metered key and check consumption quantity for associated metered account. This new licensing method will be accessible soon. Public methods Metered() Initializes a new instance of this class. void SetMeteredKey(string publicKey, string privateKey) Sets metered public and private key. parameters: publicKey Metered pubilc key. privateKey Metered private key. static decimal GetConsumptionQuantity() Gets consumption quantity. Usage example: Metered metered = new Metered(); metered.SetMeteredKey("PublicKey", "PrivateKey"); decimal consumption = Metered.GetConsumptionQuantity(); IAxis.TickMarksSpacing and IAxis.IsAutomaticTickMarksSpacing properties have been added. IAxis.IsAutomaticTickMarksSpacing property specifies automatic tick marks spacing value. If false: use TickMarksSpacing property. IAxis.TickMarksSpacing specifies how many tick marks shall be skipped before the next one shall be drawn. Applied to category or series axis. using (Presentation pres = new Presentation()) { pres.Slides.AddClone(pres.Slides[0]); IChart barChart = pres.Slides[0].Shapes.AddChart(ChartType.ClusteredBar, 50, 50, 600, 400, true); barChart.Axes.VerticalAxis.IsAutomaticTickMarksSpacing = false; barChart.Axes.VerticalAxis.TickMarksSpacing = 2; } New properties PicturesCompression and DeletePicturesCroppedAreas has been added to HTML and SVG options The new properties PicturesCompression and DeletePicturesCroppedAreas has been added to IHtmlOptions and ISVGOptions. PicturesCompression is an enum containing the following values: Dpi330 good quality for high-definition (HD) displays Dpi220 excellent quality on most printers and screens Dpi150 good for web pages and projectors Dpi96 minimize document size for sharing Dpi72 default compression level DocumentResolution use document resolution the picture will not be compressed and used in document as-is The value affects the pictures quality in generated SVG/HTML documents. Please note that the higher DPI, the larger resulting document. DeletePicturesCroppedAreas is a boolean flag indicating if the cropped parts remain as part of the document. If true the cropped parts will be removed, if false they will be serialized in the document (which can possibly lead to a larger SVG/HTML file). Here's an example of export the presentation to SVG and HTML documents with 220 and 96 DPI respectively: using (Presentation pres = new Presentation("pres.pptx")) { using (FileStream stream = new FileStream("pres.svg", FileMode.OpenOrCreate)) { SVGOptions svgOptions = new SVGOptions { PicturesCompression = PicturesCompression.Dpi220 }; pres.Slides[0].WriteAsSvg(stream, svgOptions); } HtmlOptions htmlOptions = new HtmlOptions { PicturesCompression = PicturesCompression.Dpi96 }; pres.Save("pres.html", SaveFormat.Html, htmlOptions); } New static property Header has been added to class FieldType The new static property Header has been added to class FieldType. It allows getting the instance of FieldType class that represents "header" field type. public static FieldType Header { get; } The new API can be used like this: using (Presentation pres = new Presentation("presentation.ppt")) { ISlide slide = pres.Slides[0]; IAutoShape shape = slide.Shapes[0] as IAutoShape; IParagraph paragraph = shape.TextFrame.Paragraphs[0]; for (int portionIndex = 0; portionIndex < paragraph.Portions.Count; portionIndex++) { IPortion portion = paragraph.Portions[portionIndex]; IField field = portion.Field; if (field != null && field.Type == FieldType.Header) // FieldType.Header property is used to find portion with appropriate field type { Console.WriteLine(portion.Text); } } } SvgExternalFontsHandling enum, ISVGOptions.ExternalFontsHandling and SVGOptions.ExternalFontsHandling properties have been added ExternalFontsHandling property has been added to Aspose.Slides.Export.ISVGOptions interface and Aspose.Slides.Export.SVGOptions class with return type of Aspose.Slides.Export.SvgExternalFontsHandling enum. This property defines how Aspose.Slides should handle externally loaded fonts during slide export to SVG format. There are 3 possible options: SvgExternalFontsHandling.AddLinksToFontFiles. In this case a separate css definition will be added to svg/defs section per each font that was actually used for some piece of text on the slide and was loaded externally by calling to FontsLoader.LoadExternalFonts method. Each definition contains local links to 3 separate font types: TTF, EOT and WOFF. To work correctly font files must be placed in the same directory as SVG file (could be copied there after the export) and must be named the same as original TTF file (for example FancyFont.ttf, FancyFont.eot, FancyFont.woff). If some of the fonts is missing there will be no error, but the resulting SVG file could be rendered incorrectly in some browsers (please take a look to 'Font-browsers compatibility' section below). SvgExternalFontsHandling.Embed. In this case the same css definitions will be added based on the same principle, but the font files content will be embedded directly to SVG file. Choosing this option user should place EOF and WOFF versions of the font to the same directory as original TTF file (the path to which is passed to FontsLoader.LoadExternalFonts method) before the export. If some of the fonts are missing it won't be added to SVG file at all and again it could result incorrect rendering in some browsers. SvgExternalFontsHandling.Vectorize. In this case the text that uses externally loaded fonts will be transformed to graphical objects. It works the same way as when SVGOptions.Vectorize property is set to true, but only for external fonts. Font-browser compatibility To make result SVG file rendered correctly in most of modern browsers two additional font files format are recommended to be used along with regular TTF file. EOT (Embedded Open Type) for compatibility with all versions of IE. WOFF (Web Open Font Format) for compatibility with all other browsers and as an alternative to TTF. If you don't have a copy of the font in these formats, you can use a wide variety of 3rd party tools that allows to convert TTF file to EOT and WOFF formats. Font license restrictions Please take a note that some fonts might have restrictions on embedding or/and any other kind of distribution. Always check font license agreement before converting, copying or embedding it to SVG file.

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