asposeslidescloud 23.1.0 → 23.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -27,6 +27,20 @@ You may want to check out Aspose free [Powerpoint to PDF](https://products.aspos
27
27
  **Web:** HTML/HTML5
28
28
  **Other:** MPEG4, SWF (export whole presentations)
29
29
 
30
+ ## Enhancements in Version 23.3
31
+
32
+ * Added **options** parameter to **SplitOnline** and **SplitAndSaveOnline** methods. Those options are the same as for other split & convert methods.
33
+ * Added **ShowHiddenSlides** boolean property to **ImageExportOptions** class.
34
+
35
+ ## Enhancements in Version 23.2
36
+
37
+ * New **DownloadShapeFromDto** method allows to convert charts and other shapes from DTO to SVG and other formats without creating and storing presentation files.
38
+ * Added **SoundBase64** property to **Hyperlink** class to support getting and setting hyperlink sounds.
39
+ * Added **BulletFillFormat** property to **Paragraph** class.
40
+ * Added **StopPreviousSound** property to animation **Effect** class.
41
+ * Added a number of properties to **TextFrameFormat** that enable formatting shape text: **MarginLeft**, **MarginRight**, **MarginTop**, **MarginBottom**, **WrapText**, **AnchoringType**, **CenterText**, **TextVerticalType**, **AutofitType**, **ColumnCount**, **ColumnSpacing**, **KeepTextFlat**, **RotationAngle**, **DefaultParagraphFormat**.
42
+ * Added **Pdf16**, **Pdf17**, **PdfA2b**, **PdfA2a**, **PdfA2u**, **PdfA3a**, **PdfA3b** to the list of allowed values for **PdfExportOptions.Compliance** property.
43
+
30
44
  ## Enhancements in Version 23.1
31
45
 
32
46
  * New **CompressEmbeddedFonts** and **CompressEmbeddedFontsOnline** methods allow to reduce the size taken by embedded fonts by excluding unused characters.
package/api.d.ts CHANGED
@@ -1422,6 +1422,15 @@ export declare class SlidesApi {
1422
1422
  response: http.ServerResponse;
1423
1423
  body: Buffer;
1424
1424
  }>;
1425
+ /**
1426
+ * Creates the shape from the DTO and returns the result in the specified format.
1427
+ * @param format Export format
1428
+ * @param dto Shape DTO.
1429
+ */
1430
+ downloadShapeFromDto(format: model.ShapeExportFormat, dto: model.ShapeBase): Promise<{
1431
+ response: http.ServerResponse;
1432
+ body: Buffer;
1433
+ }>;
1425
1434
  /**
1426
1435
  * Render shape to specified picture format.
1427
1436
  * @param document Document data.
@@ -2945,8 +2954,9 @@ export declare class SlidesApi {
2945
2954
  * @param password Document password.
2946
2955
  * @param storage Document storage.
2947
2956
  * @param fontsFolder Custom fonts folder.
2957
+ * @param options Export options.
2948
2958
  */
2949
- splitAndSaveOnline(document: Readable, format: model.SlideExportFormat, destFolder?: string, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string): Promise<{
2959
+ splitAndSaveOnline(document: Readable, format: model.SlideExportFormat, destFolder?: string, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string, options?: model.ExportOptions): Promise<{
2950
2960
  response: http.ServerResponse;
2951
2961
  body: model.SplitDocumentResult;
2952
2962
  }>;
@@ -2961,8 +2971,9 @@ export declare class SlidesApi {
2961
2971
  * @param password Document password.
2962
2972
  * @param storage Document storage.
2963
2973
  * @param fontsFolder Custom fonts folder.
2974
+ * @param options Export options.
2964
2975
  */
2965
- splitOnline(document: Readable, format: model.SlideExportFormat, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string): Promise<{
2976
+ splitOnline(document: Readable, format: model.SlideExportFormat, width?: number, height?: number, from?: number, to?: number, password?: string, storage?: string, fontsFolder?: string, options?: model.ExportOptions): Promise<{
2966
2977
  response: http.ServerResponse;
2967
2978
  body: Buffer;
2968
2979
  }>;