การนำเสนอ PowerPoint การประมวลผลภาพ

การจัดทำสารบรรณเป็นวิธีที่เยี่ยมในการจัดกลุ่มสิ่งที่เกี่ยวข้องอย่างมีระเบียบ และเนื่องจากเราคุ้นเคยกับการใช้โฟลเดอร์ในการจัดระเบียบไฟล์ที่เกี่ยวข้อง ดังนั้นจึงสามารถเลือกใช้แนวทางที่คล้ายกันในการใช้หมวดหมู่เพื่อจัดระเบียบสไลด์ของคุณให้อยู่ในกลุ่มที่มีความหมาย นอกจากนี้ยังช่วยให้คุณสามารถมอบหมายหมวดหมู่ให้กับเพื่อนร่วมงานแต่ละคนเพื่อทำให้ความเป็นเจ้าของสไลด์ชัดเจนในระหว่างการทำงานร่วมกัน และหากคุณเริ่มจากหน้ากระดาษเปล่า คุณสามารถใช้หมวดหมู่ในการร่างงานนำเสนอของคุณ โดยปกติ หมวดหมู่ได้รับการออกแบบให้ใช้กับงานนำเสนอขนาดใหญ่ที่มีจำนวนสไลด์มาก

ก่อนที่เราจะดำเนินการต่อไป เราจำเป็นต้องติดตั้ง Aspose.Slides Cloud SDK สำหรับ .NET และวิธีที่ง่ายที่สุดคือ NuGet แพ็กเกจโดยใช้คำสั่งต่อไปนี้ในคอนโซลจัดการแพ็กเกจ:

Install-Package Aspose.Slides-Cloud -Version 21.2.0 

เมื่อการติดตั้งเสร็จสิ้น ขั้นตอนถัดไปคือการรับข้อมูลรับรองการตรวจสอบสิทธิ์เพื่อให้คุณสามารถใช้ API ของเราได้อย่างง่ายดายและปลอดภัย สำหรับรายละเอียดเพิ่มเติม โปรดเยี่ยมชม

การจัดการส่วนต่างๆ

Aspose.Slides Cloud ให้ความสามารถในการ

ดึงส่วนต่าง ๆ ของการนำเสนอที่มีอยู่

Request URL

GET https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
GetSectionsRequest request = new GetSectionsRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder"
};
Sections sections = api.GetSections(tequest);
Console.WriteLine(sections.SectionList.Count);

ตั้งค่าแผนกใน PowerPoint

Request URL

PUT https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder

Request Body

{ "sectionList": [{ "name": "Section1", "firstSlideIndex": 1 }, { "name": "Section2", "firstSlideIndex": 4 }]}

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
Sections dto = new Sections
{
    SectionList = new List<Section>
    {
        new Section { Name = "Section1", FirstSlideIndex = 1 },
        new Section { Name = "Section2", FirstSlideIndex = 4 }
    }
};
PutSectionsRequest request = new PutSectionsRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder",
    Sections = dto
};
Sections sections = api.PutSections(request);
Console.WriteLine(sections.SectionList.Count); //2
Console.WriteLine(sections.SectionList[0].SlideList.Count); //3

สร้างหมวดหมู่ใหม่

Request URL

POST https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections?folder=myFolder&sectionName=NewSection&slideIndex=4

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PostSectionRequest request = new PostSectionRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder",
    SectionName = "NewSection",
    SlideIndex = 4
};
Sections sections = api.PostSection(request);
Console.WriteLine(sections.SectionList.Count);

เปลี่ยนชื่อส่วน

Request URL

PUT https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/2?folder=myFolder&sectionName=UpdatedSection

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PutSectionRequest request = new PutSectionRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder",
    SectionName = "UpdatedSection",
    SectionIndex = 2
};
Sections sections = api.PutSection(request);
Console.WriteLine(sections.SectionList[1].Name); //UpdatedSection

ย้ายหมวดหมู่และสไลด์ไปยังตำแหน่งอื่น

Request URL

POST https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/1/move?folder=myFolder&newPosition=2

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
PostSectionMoveRequest request = new PostSectionMoveRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder",
    SectionIndex = 1,
    NewPosition = 2
};
Sections sections = api.PostSectionMove(request);
Console.WriteLine(sections.SectionList.Count);

ลบส่วนหนึ่ง

Request URL

DELETE https://api.aspose.cloud/v3.0/slides/myPresentation.pptx/sections/2?folder=myFolder

C#.NET

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

SlidesApi api = new SlidesApi("MyAppSid", "MyAppKey");
DeleteSectionRequest request = new DeleteSectionRequest
{
    Name = "myPresentaion.pptx",
    Folder = "myFolder",
    SectionIndex = 2
};
Sections sections = api.DeleteSection(request);
Console.WriteLine(sections.SectionList.Count);