กับการปล่อยใหม่แต่ละครั้ง เรากำลังพยายามที่จะนำเสนอคุณสมบัติการจัดการและประมวลผล PowerPoint ที่ดีที่สุด เรากำลังทำงานอย่างหนักเพื่อทำให้ Aspose.Slides Cloud มีความสามารถเพียงพอที่จะรองรับความสามารถในการจัดการ PowerPoint ทุกอย่าง ดังนั้น ในบทความนี้เราจะพูดคุยเกี่ยวกับหัวข้อต่อไปนี้อย่างละเอียด

ข้อมูล: คุณอาจต้องการตรวจสอบ Aspose ฟรี PowerPoint to PDF ตัวแปลงออนไลน์。

สนับสนุนรูปแบบ FODP

The FODP is a Presentation file saved in the OpenDocument format but saved using a flat XML format, instead of the .ZIP container used by the standard .ODP files. It makes auto-generating presentations simpler and allows the presentations to be readable with a text editor. In the latest release version of Aspose.Slides Cloud SDK for .NET, the support for .fodp format has been provided. It now enables the users to load .fodb file for processing or, load existing PowerPoint files and save to FODB format.

cURL command

curl -X PUT "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/Fodp?outPath=NotesPresentation.fodp" -H  "accept: application/json" -H  "authorization: Bearer <JWT Token>" -H  "Content-Type: application/json" -H  "x-aspose-client: Containerize.Swagger" -d "{  \"Format\": \"string\"}"

Request URL

https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/Fodp?outPath=NotesPresentation.fodp

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 = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

// initialize Aspose.Slides Cloud instance
SlidesApi api = new SlidesApi(MyAppSid, MyAppKey);
// สร้างอ็อบเจ็กต์ของ PostSlidesSaveAsRequest เพื่อแปลงไฟล์
PostSlidesSaveAsRequest request = new PostSlidesSaveAsRequest
{
    Name = "NotesPresentation.pptx",
    Format = ExportFormat.Fodp,
};
Stream response = api.PostSlidesSaveAs(request);
// บันทึกไฟล์ที่สร้างขึ้นไปยังไดรฟ์ระบบ
response.CopyTo(File.Create("myPresentation.fodp"));

ตัวเลือก PdfCompliance ใหม่

ในรุ่นที่ปล่อยล่าสุด มีการเพิ่มตัวเลือกใหม่สองตัวเลือก (PdfA1a และ PdfUa options) เข้าไปในการจัด enumerations ComplianceEnum.

ตัวเลือกการปฏิบัติตามมาตรฐาน

Image 1:- ตัวเลือกการปฏิบัติตาม PDF/A ที่เพิ่งเพิ่มเข้ามา

// 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/

// 初始化 Aspose.Slides Cloud 实例
SlidesApi Slidesapi = new SlidesApi(MyAppSid, MyAppKey);
// PdfExportOption instance เพื่อกำหนดตัวเลือกในระหว่างการเรนเดอร์ PDF
Aspose.Slides.Cloud.Sdk.Model.PdfExportOptions pdfExportOptions = new PdfExportOptions();

// เลือกฟอร์แมตที่ตรงตามข้อกำหนด PDF/A
pdfExportOptions.Compliance = PdfExportOptions.ComplianceEnum.PdfA1a;
// โหลด PPTX จากคลาวด์สโตเรจและตั้งค่าไฟล์ส่งออกเป็น PDF และ PdfExportOptions
PostSlideSaveAsRequest postSlideSaveAsRequest = new PostSlideSaveAsRequest("Presentation1-a.pptx", 1, SlideExportFormat.Pdf, pdfExportOptions);
// แปลงไฟล์ผลลัพธ์เป็นออบเจ็กต์สตรีม
Stream pdf = Slidesapi.PostSlideSaveAs(postSlideSaveAsRequest);

// บันทึกไฟล์ผลลัพธ์ไปยังไดรฟ์ระบบ
pdf.CopyTo(File.OpenWrite("MyPresentation-pdf-a1a.pdf"));
A-1a compliant output

Image 2:- PPTX แปลงเป็นรูปแบบ PDF/A-1a ที่สอดคล้อง

กำหนดโน้ตสไลด์

ส่วนสำคัญของการนำเสนอคือการเตรียมบันทึกของผู้พูด บันทึกเหล่านี้สามารถรวมถึงการเตือนความจำเกี่ยวกับสิ่งที่จะพูดและข้อมูลหรือข้อเท็จจริงเพิ่มเติมที่ไม่ได้ปรากฏบนหน้าจอ

สไลด์ PowerPoint พร้อมหมายเหตุ

Image 3:- สไลด์ PowerPoint พร้อมบันทึก

การนำเสนอในรูปแบบ PowerPoint จาก Cloud Storage

Request URL

https://api.aspose.cloud/v3.0/slides/Presentation1-a.pptx/slides/1/notesSlide/exist

cURL Command

curl -X GET "https://api.aspose.cloud/v3.0/slides/Presentation1-a.pptx/slides/1/notesSlide/exist" -H "accept: application/json" -H "authorization: Bearer <JWT Token>"

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 = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

// initialize Aspose.Slides Cloud instance
SlidesApi Slidesapi = new SlidesApi(MyAppSid, MyAppKey);
// โหลด PowerPoint จากที่จัดเก็บข้อมูลบนคลาวด์และตรวจสอบหมายเหตุในสไลด์แรก
GetNotesSlideExistsRequest request = new GetNotesSlideExistsRequest
{
    Name = "Presentation1-a.pptx",
    SlideIndex = 1
};
// ระบุว่ามีบันทึกอยู่ในสไลด์หรือไม่
EntityExists exists = Slidesapi.GetNotesSlideExists(request);
// print result on console
Console.WriteLine(exists.Exists);

PowerPotin การนำเสนอจากระบบท้องถิ่น

Request URL

https://api.aspose.cloud/v3.0/slides/slides/1/notesSlide/exist

cURL Command

curl -X POST "https://api.aspose.cloud/v3.0/slides/slides/2/notesSlide/exist" -H "accept: application/json" -H "authorization: Bearer <JWT Token>" -d {"document":{}}

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 = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

// เริ่มต้นอินสแตนซ์ Aspose.Slides Cloud
SlidesApi Slidesapi = new SlidesApi(MyAppSid, MyAppKey);
// โหลด PowerPoint จากไดรฟ์ระบบในเครื่องและตรวจสอบหมายเหตุในสไลด์แรก
PostGetNotesSlideExistsRequest request = new PostGetNotesSlideExistsRequest
{
    Document = File.OpenRead("Presentation1-a.pptx"),
    SlideIndex = 1
};
// ระบุว่ามีบันทึกอยู่ในสไลด์หรือไม่
EntityExists exists = Slidesapi.PostGetNotesSlideExists(request);            
// print result on console
Console.WriteLine("Notes exist in Slide :"+ exists.Exists);

ส่งออก Subshapes ของ PowerPoint เป็น PNG

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

รูปแบบการส่งออกภาพแรสเตอร์

Image 4:- รูปแบบการส่งออกภาพ

สไลด์ PowerPoint พร้อมรูปทรงอัจฉริยะ

Image 5:- สไลด์ PowerPoint ที่มีรูปทรง

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/

// initialize Aspose.Slides Cloud instance
SlidesApi Slidesapi = new SlidesApi(MyAppSid, MyAppKey);
// สร้างวัตถุเพื่อโหลด PPTX และเข้าถึงวัตถุรูปทรงที่ 4 บนสไลด์ที่ 2
PostSubshapeSaveAsRequest request = new PostSubshapeSaveAsRequest
{
    Name = "Presentation1-a.pptx",
    SlideIndex = 2, 
    ShapeIndex = 4,
    Format = ShapeExportFormat.Png,
    ScaleX = 2,
    ScaleY = 2
};
// ใช้รูปทรงวัตถุเป็นอินสแตนซ์ Stream
Stream file = Slidesapi.PostSubshapeSaveAs(request);
// บันทึกรูปภาพแรสเตอร์ลงในไดรฟ์ระบบ
file.CopyTo(File.Create("subshape.png"));
smartshape ส่งออกเป็น PNG

Image 6:- รูปทรงที่ส่งออกในรูปแบบ PNG

ข้อสรุป

ในบทความนี้ เราได้พูดคุยเกี่ยวกับรายละเอียดที่เกี่ยวข้องกับฟีเจอร์ใหม่ที่นำเสนอใน Aspose.Slides Cloud SDK สำหรับ .NET เราได้พูดคุยเกี่ยวกับรายละเอียดเฉพาะเกี่ยวกับวิธีการส่งออก subshapes เป็น PNG หรือ JPEG รูปแบบและวิธีการแปลง PPT เป็น PDF/A รูปแบบ หากคุณพบปัญหาใด ๆ ขณะใช้งาน API กรุณาอย่าลังเลที่จะติดต่อเราผ่าน product support forum ฟรี

บทความที่เกี่ยวข้อง

เราขอแนะนำให้เยี่ยมชมลิงก์ต่อไปนี้เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับ