Slidize.Cloud 24.9.0

dotnet add package Slidize.Cloud --version 24.9.0                
NuGet\Install-Package Slidize.Cloud -Version 24.9.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Slidize.Cloud" Version="24.9.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Slidize.Cloud --version 24.9.0                
#r "nuget: Slidize.Cloud, 24.9.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Slidize.Cloud as a Cake Addin
#addin nuget:?package=Slidize.Cloud&version=24.9.0

// Install Slidize.Cloud as a Cake Tool
#tool nuget:?package=Slidize.Cloud&version=24.9.0                

Slidize.Cloud.Sdk - the C# library for the Slidize.Cloud REST API

Slidize.Cloud SDK provides useful methods for manipulating PowerPoint presentations, such as conversion, merging, text replacement and others.

Licensing

The SDK is licensed under MIT License.

Installation

Run the following command to install the Nuget Package.

Install-Package Slidize.Cloud

Or, you can download the sources from GitHub and either reference the SDK project or compile and reference the Slidize.Cloud.Sdk.dll file.

You should use these namespaces in your code files:

using Slidize.Cloud.Sdk.Api;
using Slidize.Cloud.Sdk.Client;
using Slidize.Cloud.Sdk.Model;

Getting Started

var api = new SlidizeApi();
using var fileStream = File.Open("MyPresentation.pptx", FileMode.Open);
using var masterFileStream = File.Open("MasterPresentation.pptx", FileMode.Open);
var mergeOptions = new MergeOptions()
{
    MasterFileName = "MasterPresentation.pptx",
    ExcludeMasterFile = false
};

var stream = api.Merge(ExportFormat.Pdf, new List<Stream>() {fileStream, masterFileStream}, mergeOptions);

using var fs = new FileStream("result.pdf", FileMode.CreateNew);
stream.CopyTo(fs);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.9.0 98 9/16/2024