HTML JSON XML SVG POWERPOINT
EXCEL

แปลง EXCEL เป็น POWERPOINT ผ่าน C#

ส่งออก Excel® EXCEL เป็น POWERPOINT บน .NET Framework, .NET Core, Mono หรือ Xamarin Platforms

การแปลง EXCEL เป็น POWERPOINT บน .NET

  1. เปิดไฟล์ EXCEL โดยใช้คลาส Workbook
  2. แปลง EXCEL เป็น PDF และตั้งค่า SaveFormat เป็น Auto
  3. โหลดไฟล์ PDF ที่แปลงแล้วโดยใช้คลาส Powerpointument
  4. บันทึกเอกสารในรูปแบบ POWERPOINT โดยใช้วิธี Save และตั้งค่า Powerpoint เป็น SaveFormat

ข้อกำหนดการแปลง

ติดตั้งจากบรรทัดคำสั่งเป็น nuget install Aspose.Total หรือผ่าน Package Manager Console ของ Visual Studio ด้วย Install-Package Aspose.Total

หรือรับตัวติดตั้ง MSI แบบออฟไลน์หรือ DLL ในไฟล์ ZIP จาก ดาวน์โหลด

.NET C# Code สำหรับการแปลง EXCEL เป็น POWERPOINT

// load the EXCEL file using Workbook class
var book = new Aspose.Cells.Workbook("input.excel");
// save EXCEL as PDF
book.Save("pdfOutput.pdf", Aspose.Cells.SaveFormat.Auto); 
// load the PDF file using Powerpointument class
var powerpointument = new Aspose.Pdf.Powerpointument("pdfOutput.pdf");
// save powerpointument in PPTX format
powerpointument.Save("output.pptx", SaveFormat.Pptx); 

สำรวจ EXCEL ตัวเลือกการแปลงด้วย .NET

แปลง EXCEL S TO DOC (รูปแบบไบนารีของ Microsoft Word)
แปลง EXCEL S TO DOCX (เอกสาร Office 2007+ Word)
แปลง EXCEL S TO PPTX (เปิดรูปแบบการนำเสนอ XML)
แปลง EXCEL S TO WORD (รูปแบบไฟล์ประมวลผลคำ)