ส่งออกไฟล์สื่อเป็นไฟล์ HTML
Contents
[
Hide
]
เพื่อส่งออกไฟล์สื่อเป็น HTML โปรดทำตามขั้นตอนด้านล่าง:
- สร้างอินสแตนซ์ของคลาส Presentation
- รับอ้างอิงของสไลด์
- กำหนดเอฟเฟกต์การเปลี่ยน
- บันทึกการนำเสนอเป็นไฟล์ PPTX
ในตัวอย่างด้านล่าง เราได้ส่งออกไฟล์สื่อเป็น HTML แล้ว.
ตัวอย่าง
//โหลดการนำเสนอ
using (Presentation pres = new Presentation("example.pptx"))
{
const string path = "path";
const string fileName = "video.html";
const string baseUri = "http://www.example.com/";
VideoPlayerHtmlController controller = new VideoPlayerHtmlController(path: path, fileName: fileName, baseUri: baseUri);
//ตั้งค่าตัวเลือก HTML
HtmlOptions htmlOptions = new HtmlOptions(controller);
SVGOptions svgOptions = new SVGOptions(controller);
htmlOptions.HtmlFormatter = HtmlFormatter.CreateCustomFormatter(controller);
htmlOptions.SlideImageFormat = SlideImageFormat.Svg(svgOptions);
//บันทึกไฟล์
pres.Save(path + fileName, SaveFormat.Html, htmlOptions);
}