
Ghi chú là một trong những thành phần thiết yếu khi bạn tạo một bài thuyết trình. Bạn thêm ghi chú cho người thuyết trình để tham khảo sau này trong khi trình bày slideshow trước một khán giả. Trong suốt buổi thuyết trình, ghi chú của người thuyết trình sẽ hiển thị trên màn hình của bạn nhưng không hiển thị cho khán giả. Vì vậy, phần Ghi chú là nơi để lưu trữ các điểm nói mà bạn muốn đề cập khi bạn trình bày bài thuyết trình của mình.
Aspose.Slides Cloud cung cấp khả năng thêm, cập nhật hoặc xóa chú thích từ các trang chiếu PowerPoint. Bạn có thể thực hiện thao tác này trên các trang chiếu PowerPoint có sẵn trên ổ đĩa hệ thống cục bộ hoặc lưu trữ trong đám mây.
Thêm ghi chú vào slide
Để thêm ghi chú, bạn cần thử sử dụng NotesSlide/PostAddNotesSlide. Lệnh cURL sau đây cho phép bạn thêm ghi chú vào các trang trình chiếu PowerPoint.
curl -X POST "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide" -H "accept: application/json" -H "authorization: Bearer <jwt token>" -H "Content-Type: application/json" -d "{ \"Text\": \"These are sample presenter notes added using Aspose.Slides Cloud\",}"
Yêu cầu URL
https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide
Response Body
{<strong>
</strong>"text":** **"These are sample presenter notes added using Aspose.Slides Cloud",<strong>
</strong>"shapes":** **{<strong>
</strong>"uri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide/shapes",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>},<strong>
</strong>"selfUri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>}
C#.NET code snippet
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
// khởi tạo đối tượng Aspose.Slides Cloud
SlidesApi slidesApi = new SlidesApi(MyAppSid, MyAppKey);
String fileName = "NotesPresentation.pptx";
// NotesSlide dto đối tượng để đại diện cho ghi chú của Slide
NotesSlide notesSlide = new NotesSlide();
// sample text for the Notes area
notesSlide.Text = "These are sample presenter notes added using Aspose.Slides Cloud";
// Tạo đối tượng PostAddNotesSlideRequest để thêm Ghi chú vào tệp PPTX
PostAddNotesSlideRequest postAddNotesSlideRequest = new PostAddNotesSlideRequest();
// tên của tệp mà chú thích cần được thêm vào
postAddNotesSlideRequest.Name = fileName;
// chỉ số của trang trình bày trong bài thuyết trình PowerPoint
postAddNotesSlideRequest.SlideIndex = 1;
// NotesSlide object
postAddNotesSlideRequest.Dto = notesSlide;
// thêm NotesSlideRequest vào phiên bản SlidesApi
slidesApi.PostAddNotesSlide(postAddNotesSlideRequest);

Hình ảnh 1:- Trang trình bày PowerPoint không có ghi chú

Hình ảnh 2:- Trang trình bày PowerPoint với ghi chú đã thêm
Cập nhật ghi chú trang trình bày
Bạn cũng có thể sử dụng API để cập nhật ghi chú bên trong bản trình bày PowerPoint. Để hoàn thành yêu cầu này, NotesSlide/PutUpdateNotesSlide được sử dụng.
cURL command
curl -X PUT "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide" -H "accept: application/json" -H "authorization: Bearer <jwt token>" -H "Content-Type: application/json" -d "{ \"Text\": \"Notes updated using Aspose.Slides Cloud API\", \"Shapes\": { \"Uri\": { \"Href\": \"https://products.aspose.cloud/slides/curl\", \"Title\": \"Aspose.Slides Cloud for cURL\" } }}"
Yêu cầu URL
https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide
Response Body
{<strong>
</strong>"text":** **"Notes updated using Aspose.Slides Cloud API",<strong>
</strong>"shapes":** **{<strong>
</strong>"uri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide/shapes",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>},<strong>
</strong>"selfUri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>}
C#.NET Code snippet
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
// khởi tạo đối tượng Aspose.Slides Cloud
SlidesApi slidesApi = new SlidesApi(MyAppSid, MyAppKey);
String fileName = "NotesPresentation.pptx";
// NotesSlide dto object để đại diện cho ghi chú Slide
NotesSlide notesSlide = new NotesSlide();
// văn bản mẫu cho khu vực Ghi chú
notesSlide.Text = "Notes updated using Aspose.Slides Cloud API";
// Tạo đối tượng PutUpdateNotesSlideRequest để cập nhật Ghi chú bên trong tệp PPTX
PutUpdateNotesSlideRequest putUpdateNotesSlideRequest = new PutUpdateNotesSlideRequest();
// tên của tệp mà Ghi chú cần được cập nhật
putUpdateNotesSlideRequest.Name = fileName;
// chỉ mục của trang chiếu trong bài thuyết trình PowerPoint
putUpdateNotesSlideRequest.SlideIndex = 1;
// NotesSlide object
putUpdateNotesSlideRequest.Dto = notesSlide;
// thêm PutUpdateNotesSlideRequest vào thể hiện SlidesApi
slidesApi.PutUpdateNotesSlide(putUpdateNotesSlideRequest);

Hình ảnh 3:- Trang trình bày với Ghi chú cập nhật
Đọc ghi chú trang trình bày
API Cloud xử lý PowerPoint cũng cung cấp khả năng đọc ghi chú từ slide hiện có. Bạn chỉ cần cung cấp tên tệp PowerPoint và chỉ số của một slide mà bạn cần đọc thông tin về ghi chú. GetNotesSlide cho phép bạn thực hiện yêu cầu này.
cURL command
curl -X GET "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide" -H "accept: application/json" -H "authorization: Bearer <jwt token>"
Response body
Nội dung phản hồi cho thấy các ghi chú trang trượt được phân tích từ một trang trượt cụ thể của bài trình bày PowerPoint.
{<strong>
</strong>"text":** **"This is second slide of PowerPoint presentation",<strong>
</strong>"shapes":** **{<strong>
</strong>"uri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide/shapes",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>},<strong>
</strong>"selfUri":** **{<strong>
</strong>"href":** **"https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide",<strong>
</strong>"relation":** **"self"<strong>
</strong>}<strong>
</strong>}
Trong trường hợp bạn cần đọc thông tin slide ghi chú cho một tài liệu được cung cấp trong thân yêu cầu, hãy thử sử dụng PostGetNotesSlide.
Xóa ghi chú trang trình bày
API cung cấp phương thức DeleteNotesSlide để xóa/xóa các ghi chú khỏi trang chiếu PowerPoint.
cURL command
curl -X DELETE "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide" -H "accept: application/json" -H "authorization: Bearer <jwt token>"

Hình ảnh 4:- Slide PowerPoint với ghi chú đã xóa
Chuyển đổi slide ghi chú sang định dạng hình ảnh cụ thể
Bạn có thể gặp phải yêu cầu để hiển thị các slide PowerPoint chứa ghi chú dưới các định dạng hình ảnh cụ thể. Để thực hiện yêu cầu này, bạn cần sử dụng phương thức GetNotesSlideWithFormat của API.
cURL command
curl -X GET "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide/Jpeg" -H "accept: multipart/form-data" -H "authorization: Bearer "
Yêu cầu URL
https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide/Jpeg
Kết quả là, thân phản hồi chứa một hình ảnh đã được chuyển đổi như được hiển thị bên dưới.

Hình 5:- Bản xem trước của slide thứ 2 chứa Ghi chú

Hình ảnh 6:- Trang ghi chú PowerPoint được chuyển đổi thành định dạng hình ảnh JPEG