滑動保護預覽

PowerPoint 簡報具有包含簡報詳細資訊的屬性,例如標題、作者名稱、主題和關鍵字,以識別文件的主題或內容等。為簡報的屬性屬性指定相關值是很重要的,因為它們有助於識別簡報。而簡報中的個別幻燈片則有與之相關的屬性,例如高度、寬度、方向、簡報中的幻燈片索引、大小類型等。Aspose.Slides Cloud 使您可以以編程方式設置 PPTX 保護屬性。

快速提示

使用以下命令來識別當前託管的 Aspose.Slides Cloud API 版本,

curl -X GET "https://api.aspose.cloud/v3.0/slides/info" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"

Response Body

{  "name":  "Aspose.Slides for Cloud",  "version":  "21.1.0"  }

現在我們將在這篇博客中闡明以下主題。

獲取幻燈片屬性

Aspose.Slides Cloud 提供了使用 cURL 命令獲取幻燈片屬性的功能,同時,您也可以嘗試使用特定語言的編程 SDK 來滿足您的需求。

cURL 命令

curl -X GET "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"

請求 URL

https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties

Response Body

{  "firstSlideNumber":  **1**,  "orientation":  "Landscape",  "sizeType":  "Widescreen",  "width":  **960**,  "height":  **540**,  "selfUri":  {  "href":  "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties",  "relation":  "self"  }  }

C# .NET

// 完整的範例可以在 https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet 找到。
string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxxx";   // Get AppKey and AppSID from https://dashboard.aspose.cloud/

try
{
    // 實例化 SlidesAPI 物件
    Aspose.Slides.Cloud.Sdk.SlidesApi slidesApi = new Aspose.Slides.Cloud.Sdk.SlidesApi(Client_ID, Client_Secret);
    // 建立 GetSlidesSlidePropertiesRequest 物件並提供輸入的 PPTX 參考
    GetSlidesSlidePropertiesRequest request = new GetSlidesSlidePropertiesRequest { Name = "input.pptx" };
    // 讀取幻燈片屬性
    SlideProperties slideProperties = slidesApi.GetSlidesSlideProperties(request);
    // 顯示第一張幻燈片編號細節
    Console.WriteLine(slideProperties.FirstSlideNumber);
    // print orientation details of slide
    Console.WriteLine(slideProperties.Orientation);
    // 印出滑梯的高度細節
    Console.WriteLine(slideProperties.Height);
    // 列印幻燈片的寬度詳細資訊
    Console.WriteLine(slideProperties.Width);
    // 打印與 scaleType 相關的信息
    Console.WriteLine(slideProperties.ScaleType);
}
catch (Exception e)
{
    Console.WriteLine("Exception while calling Api: " + e.ToString());
}

設定 PPTX 幻燈片屬性

然而,Aspose.Slides Cloud 完全能夠設置 PowerPoint 幻燈片的屬性,以下部分中,我們已經解釋了相關步驟。

cURL 命令

curl -X PUT "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>" \
-H "Content-Type: application/json" \
-d "{ \"FirstSlideNumber\": 0, \"Orientation\": \"Portrait\", \"ScaleType\": \"DoNotScale\", \"SizeType\": \"OnScreen\", \"Width\": 600, \"Height\": 900, \"SelfUri\": { \"Href\": \"https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties\", \"Relation\": \"self\", \"LinkType\": \"\", \"Title\": \"Hello\" }, \"AlternateLinks\": [ { \"Href\": \"string\", \"Relation\": \"string\", \"LinkType\": \"string\", \"Title\": \"string\" } ]}"

C# .NET

// 請訪問以下鏈接以獲取完整的源代碼  https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet
try
{
    String Client_ID = "xxxxxxxx-1c8e-4ea4-a948-3857547232fa";
    String Client_Secret = "xxxxxxxx237f013e329cdf5694cc96a";
    // 實例化 SlidesAPI 物件
    Aspose.Slides.Cloud.Sdk.SlidesApi slidesApi = new Aspose.Slides.Cloud.Sdk.SlidesApi(Client_ID, Client_Secret);
    // Create PutSlidesSlidePropertiesRequest object and provide input PPTX as argument
    PutSlidesSlidePropertiesRequest request = new PutSlidesSlidePropertiesRequest {
        // 指定輸入 PowerPoint 簡報
        Name = "input.pptx",
        Dto = new SlideProperties {
            Width = 900,
            Height = 600,
            Orientation = SlideProperties.OrientationEnum.Portrait,
            ScaleType = SlideProperties.ScaleTypeEnum.DoNotScale,
            SizeType = SlideProperties.SizeTypeEnum.OnScreen,
        }
    };
    SlideProperties response = slidesApi.PutSlidesSlideProperties(request);
    // 讀取幻燈片的寬度屬性
    Console.WriteLine(response.Width);
    // 讀取幻燈片的高度屬性
    Console.WriteLine(response.Height);
 }
catch (Exception e)
{
    Console.WriteLine("Exception while calling Api: " + e.ToString());
}

取得幻燈片保護屬性

API 的 GetSlidesProtectionProperties 方法提供了讀取簡報文件保護屬性的功能。

curl -X GET "https://api.aspose.cloud/v3.0/slides/input.pptx/protectionProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"

C# .NET

// 請訪問以下連結以獲取完整的源代碼  https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet

try
{
    String Client_ID = "xxxxxxx-1c8e-4ea4-a948-3857547232fa";
    String Client_Secret = "xxxxxxxx237f013e329cdf5694cc96a";
    // 實例化 SlidesAPI 物件
    SlidesApi slidesApi = new SlidesApi(Client_ID, Client_Secret);
    // 建立 PutSlidesSlidePropertiesRequest 物件並提供輸入的 PPTX 作為參數
    GetSlidesProtectionPropertiesRequest request = new GetSlidesProtectionPropertiesRequest
    {
        // speicfy input PowerPoint presentation
        Name = "input.pptx",   
    };
    ProtectionProperties slideProperties = slidesApi.GetSlidesProtectionProperties(request);
    // 讀取幻燈片的 width 屬性
    Console.WriteLine("Encrypted Document Properties = "+slideProperties.EncryptDocumentProperties);
    Console.WriteLine("Read Only Recommended = "+slideProperties.ReadOnlyRecommended);
    Console.WriteLine("Self URi = " + slideProperties.SelfUri);
}
catch (Exception e)
{
    Console.WriteLine("Exception while calling Api: " + e.ToString());
}

不推薦的方法

PUT fromHtml 方法已被淘汰,將在 21.4 版本中刪除。請使用 POST fromHtml 方法來創建簡報並向其中添加新幻燈片。

slideSize resource is deprecated and will be deleted in the 21.4 release. Use slideProperties resource instead.

結論

在本文中,我們探討了 Aspose.Slides Cloud 設置 PPTX 保護屬性、獲取幻燈片保護屬性、使用 C# .NET 和 cURL 命令獲取幻燈片屬性的能力。您可以輕鬆地從 GitHub 下載 Aspose.Slides Cloud SDK for .NET 的完整源代碼。若要了解更多有關 SDK 能力的信息,請參閱 Developer Guide

相關文章