Phân tích cú pháp các định dạng ODP trong C#
Phân tích cú pháp tài liệu ODP gốc và hiệu suất cao bằng cách sử dụng Aspose.Slides phía máy chủ cho các API .NET, mà không cần sử dụng bất kỳ phần mềm nào như Microsoft hoặc Adobe PDF.
Cách phân tích cú pháp tệp ODP bằng C#
Để phân tích cú pháp tệp ODP, chúng tôi sẽ sử dụng
API là một API thao tác tài liệu giàu tính năng, mạnh mẽ và dễ sử dụng cho nền tảng C#. Mở
quản lý gói, tìm kiếm ** Aspose.Slides ** và cài đặt. Bạn cũng có thể sử dụng lệnh sau từ Bảng điều khiển Trình quản lý Gói.
Yêu cầu
PM> Install-Package Aspose.Slides.NET
Các bước để phân tích cú pháp tệp ODP trong C#
Có thể thực hiện phân tích cú pháp tài liệu cơ bản với API Aspose.Slides for .NET chỉ với vài dòng mã.
Tải tệp ODP.
Nhận tất cả các khung văn bản.
Lặp qua từng phần đoạn văn.
Nhận đầu ra cần thiết như văn bản, phông chữ, v.v.
yêu cầu hệ thống
Các API của chúng tôi được hỗ trợ trên tất cả các nền tảng và Hệ điều hành chính. Trước khi thực hiện mã bên dưới, hãy đảm bảo rằng bạn có các điều kiện tiên quyết sau trên hệ thống của mình.
- Microsoft Windows hoặc hệ điều hành tương thích với .NET Framework, .NET Core, Windows Azure, Mono hoặc Xamarin Platforms
- Môi trường phát triển như Microsoft Visual Studio
- Aspose.Slides cho .NET DLL được tham chiếu trong dự án của bạn - Cài đặt từ NuGet bằng cách sử dụng nút Tải xuống ở trên
Phân tích cú pháp tệp ODP - C#
//Extract Text from the Whole odp Presentation
Presentation odpPresentation = new Presentation(dataDir + "demo.odp");
//Get an Array of ITextFrame objects from all slides in the PPTX
ITextFrame[] textFramesPPTX = Aspose.Slides.Util.SlideUtil.GetAllTextFrames(odpPresentation, true);
//Loop through the Array of TextFrames
for (int i = 0; i < textFramesPPTX.Length; i++)
//Loop through paragraphs in current ITextFrame
foreach (IParagraph para in textFramesPPTX[i].Paragraphs)
//Loop through portions in the current IParagraph
foreach (IPortion port in para.Portions)
{
//Display text in the current portion
Console.WriteLine(port.Text);
//Display font height of the text
Console.WriteLine(port.PortionFormat.FontHeight);
//Display font name of the text
if (port.PortionFormat.LatinFont != null)
Console.WriteLine(port.PortionFormat.LatinFont.FontName);
}
Giới thiệu về Aspose.Slides cho .NET API
API Aspose.Slides có thể được sử dụng để đọc, viết, thao tác và chuyển đổi tài liệu Microsoft PowerPoint sang PDF, XPS, HTML, TIFF, ODP và nhiều định dạng khác. Người ta có thể tạo các tệp mới từ đầu và lưu chúng ở các định dạng được hỗ trợ có liên quan. Aspose.Slides là một API độc lập để tạo, phân tích cú pháp hoặc thao tác với các bản trình bày, trang trình bày và các phần tử và nó không phụ thuộc vào bất kỳ phần mềm nào như Microsoft hoặc OpenOffice.Online ODP Parser Live Demos
Extract text and images from ODP documents right now by visiting our Live Demos website . The live demo has the following benefits
ODP Những gì là ODP Tập Tin Định Dạng
Files with ODP extension represent presentation file format used by OpenOffice.org in the OASISOpen standard. A presentation file is a collection of slides where each slide can comprise of text, images, formatting, animations, and other media. These slides are presented to audience in the form of slideshows with custom presentation settings. ODP files can be opened by applications that conform to the OpenDocument format (such as OpenOffice or StarOffice).
Đọc Thêm