Hãy làm theo hướng dẫn này về cách thêm siêu liên kết vào PowerPoint bằng API C# REST. Bạn sẽ học cách tự động chèn siêu liên kết trong PowerPoint bằng C# RESTful Service bằng cách sử dụng Cloud SDK dựa trên .NET hỗ trợ tất cả các tính năng nâng cao để làm việc với bản trình bày. Nó sẽ hỗ trợ bạn trong việc chọn một slide và hình dạng cụ thể để thêm siêu liên kết tùy chỉnh.
Điều kiện tiên quyết
Tải xuống Aspose.Slides Cloud SDK for Dotnet for inserting hyperlinks
Thiết lập dự án C# với SDK ở trên để thêm liên kết vào hình dạng
Các bước để thêm liên kết vào PowerPoint bằng API dựa trên C# .NET
- Khởi tạo SlidesApi bằng khóa API và bí mật để xác thực
- Đọc tệp đầu vào vào luồng bộ nhớ và tải nó lên
- Đặt chỉ mục của các trang chiếu và hình để thêm siêu liên kết (chỉ mục dựa trên 1)
- Tạo đối tượng hình dạng bằng siêu kết nối
- Update hình trên trang chiếu được chỉ định có siêu liên kết
- In URL của siêu liên kết đã cập nhật ra bảng điều khiển để xác minh
- Tải xuống bản trình bày đã cập nhật từ đám mây dưới dạng luồng và lưu nó vào đĩa
Các bước này giải thích cách thêm siêu liên kết trong PowerPoint bằng API C# REST. Bạn có thể tạo Hình dạng và thêm siêu liên kết bằng cách xác định loại hành động và URL bên ngoài. Cuối cùng, cập nhật hình dạng đích trong slide mong muốn bằng cách sử dụng hình dạng mới tạo và lưu kết quả đầu ra vào đĩa nếu cần.
Mã để chèn liên kết trong PowerPoint bằng API mã thấp C#
using Aspose.Slides.Cloud.Sdk; // Import the Aspose.Slides Cloud SDK to work with PowerPoint presentations. | |
using Aspose.Slides.Cloud.Sdk.Model; // Import models used by the SDK. | |
using System; // Import the System namespace for basic functionalities. | |
using System.IO; // Import System.IO for file input/output operations. | |
namespace AsposeTestCodes | |
{ | |
class Program | |
{ | |
static void Main(string[] args) // Main method - the program's entry point. | |
{ | |
// Instantiate the SlidesApi with the API key and secret for authentication. | |
SlidesApi slidesApi = new SlidesApi("Client ID", "Client Secret"); | |
// Name of the PowerPoint file to work with. | |
string fileName = "PresentationWithoutHyperlink.pptx"; | |
// Read the file into a memory stream and upload it to the Aspose.Slides cloud storage. | |
FilesUploadResult uploadedPresResult = slidesApi.UploadFile(fileName, new MemoryStream(File.ReadAllBytes(fileName))); | |
// Index of the slide and shape where the target shape is located (1-based index). | |
int slideIndex = 2, shapeIndex = 2; | |
Shape shape = new Shape // Create a shape object with a hyperlink | |
{ | |
HyperlinkClick = new Hyperlink | |
{ | |
ActionType = Hyperlink.ActionTypeEnum.Hyperlink, // Set the action type as a hyperlink. | |
ExternalUrl = "https://docs.aspose.cloud/slides" // The URL for the hyperlink. | |
} | |
}; | |
// Update the shape on the specified slide with the hyperlink. | |
ShapeBase updatedShpWithHyperlink = slidesApi.UpdateShape(fileName, slideIndex, shapeIndex, shape); | |
// Print the updated hyperlink's URL to the console for verification. | |
Console.WriteLine(updatedShpWithHyperlink.HyperlinkClick.ExternalUrl); | |
// Download the updated presentation from the cloud as a stream. | |
Stream stream = slidesApi.DownloadFile(fileName); | |
// Save the downloaded presentation to the local file system with a new name. | |
var fs = new FileStream("PresWithHyperlinks.pptx", FileMode.Create, FileAccess.Write); | |
stream.CopyTo(fs); // Copy the content from the stream to the file. | |
} | |
} | |
} |
Mã này trình bày cách chèn siêu liên kết trong PowerPoint bằng Giao diện C# REST. Bạn có thể đặt các thuộc tính khác nhau của siêu liên kết, chẳng hạn như cờ để bật/tắt siêu liên kết, chú giải công cụ, lịch sử, nhấp chuột nổi bật và dừng âm thanh khi nhấp chuột. Lưu ý rằng tất cả các thuộc tính này đều có sẵn bằng cách di chuột qua siêu liên kết thay vì nhấp vào nó.
Bài viết này đã hướng dẫn chúng tôi tạo một siêu liên kết trong PowerPoint bằng API mã thấp C#. Để thêm SmartArt vào trang chiếu, hãy tham khảo bài viết trên Thêm SmartArt vào PowerPoint bằng API C# REST.