슬라이드 보호 미리보기

PowerPoint 프레젠테이션에는 제목, 저자 이름, 주제 및 문서의 주제나 내용 등을 식별하는 키워드와 같은 프레젠테이션에 대한 세부정보를 포함하는 속성이 있습니다. 프레젠테이션의 속성 속성에 관련 값을 지정하는 것이 중요합니다. 이는 프레젠테이션을 식별하는 데 도움이 되기 때문입니다. 반면에 프레젠테이션 내의 개별 슬라이드는 높이, 너비, 방향, 프레젠테이션 내 슬라이드 인덱스, 크기 유형 등과 같은 속성이 연결되어 있습니다. Aspose.Slides Cloud를 사용하면 프로그래밍 방식으로 PPTX 보호 속성을 설정할 수 있습니다.

Quick Tip

다음 명령을 사용하여 현재 호스팅된 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

// complete examples can be found over 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);
    // display First slide number details
    Console.WriteLine(slideProperties.FirstSlideNumber);
    // 슬라이드의 방향 세부정보 인쇄
    Console.WriteLine(slideProperties.Orientation);
    // 슬라이드의 높이 세부 정보를 출력합니다.
    Console.WriteLine(slideProperties.Height);
    // print width details for slide
    Console.WriteLine(slideProperties.Width);
    // print information related to 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

// please viist following link for complete source code  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);
    // PutSlidesSlidePropertiesRequest 객체를 생성하고 입력 PPTX를 인수로 제공합니다.
    PutSlidesSlidePropertiesRequest request = new PutSlidesSlidePropertiesRequest {
        // speicfy input PowerPoint presentation
        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

// please viist following link for complete source code  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);
    // 슬라이드의 너비 속성을 읽습니다.
    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 리소스는 더 이상 사용되지 않으며 21.4 릴리스에서 삭제될 예정입니다. 대신 slideProperties 리소스를 사용하세요.

결론

이 기사에서는 Aspose.Slides Cloud의 기능을 탐색하여 PPTX 보호 속성을 설정하고, 슬라이드 보호 속성을 가져오고, C# .NET 및 cURL 명령을 사용하여 슬라이드 속성을 가져오는 방법을 다루었습니다. Aspose.Slides for .NET Cloud SDK의 전체 소스 코드를 GitHub에서 쉽게 다운로드할 수 있습니다. SDK의 기능에 대해 더 알고 싶으시면 Developer Guide를 살펴보세요.

관련 기사