Forhåndsvisning af noter i dias

Noter er en af de integrerede komponenter, når du laver en præsentation. Du tilføjer talernoter for senere at kunne referere til dem, når du præsenterer diasshowet foran et publikum. Under præsentationen er talernoterne synlige på din skærm, men er ikke synlige for publikum. Så noter-panelet er stedet, hvor du opbevarer talepunkter, som du ønsker at nævne, når du giver din præsentation.

Aspose.Slides Cloud tilbyder funktioner til at tilføje, opdatere eller fjerne noter fra PowerPoint-slides. Du kan udføre operationen på PowerPoint-slides, der er tilgængelige på den lokale systemdrev eller gemt i cloud-lagring.

Tilføj noter til dias

For at tilføje noter skal du prøve at bruge NotesSlide/PostAddNotesSlide. Den følgende cURL-kommando gør det muligt for dig at tilføje noter til PowerPoint-dias.

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\",}"

Request 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/

// initialiser Aspose.Slides Cloud objektet
SlidesApi slidesApi = new SlidesApi(MyAppSid, MyAppKey);
String fileName = "NotesPresentation.pptx";            

// NotesSlide dto objekt til at reprsentere Slide noter
NotesSlide notesSlide = new NotesSlide();
// sample text for the Notes area
notesSlide.Text = "These are sample presenter notes added using Aspose.Slides Cloud";

// Opret PostAddNotesSlideRequest objekt for at tilføje noter til PPTX-fil
PostAddNotesSlideRequest postAddNotesSlideRequest = new PostAddNotesSlideRequest();
// navnet på filen, som noter skal tilføjes til
postAddNotesSlideRequest.Name = fileName;
// indeks af dias inden for PowerPoint-præsentation
postAddNotesSlideRequest.SlideIndex = 1;
// NotesSlide object
postAddNotesSlideRequest.Dto = notesSlide;

// tilføj NotesSlideRequest til SlidesApi-forekomst
slidesApi.PostAddNotesSlide(postAddNotesSlideRequest);
Sample Slides without notes

Billede 1:- PowerPoint slide uden noter

PowerPoint Dias med Noter

Image 2:- PowerPoint slide med tilføjede noter

Opdater slide-noter

Du kan også bruge API’en til at opdatere noter inde i PowerPoint-præsentationen. For at imødekomme dette krav bruges NotesSlide/PutUpdateNotesSlide.

cURL kommando

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\"    }  }}"

Request 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 kodeeksempel

string MyAppKey = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxx";    // Get AppKey and AppSID from https://dashboard.aspose.cloud/

// initialiser Aspose.Slides Cloud objekt
SlidesApi slidesApi = new SlidesApi(MyAppSid, MyAppKey);
String fileName = "NotesPresentation.pptx";            

// NotesSlide dto objekt til at repræsentere diasnoter
NotesSlide notesSlide = new NotesSlide();
// sample text for the Notes area
notesSlide.Text = "Notes updated using Aspose.Slides Cloud API";

// Opret PutUpdateNotesSlideRequest objekt for at opdatere noter inde i PPTX-fil
PutUpdateNotesSlideRequest putUpdateNotesSlideRequest = new PutUpdateNotesSlideRequest();

// navnet på filen, som Noter skal opdateres til
putUpdateNotesSlideRequest.Name = fileName;
// indeks af dias i PowerPoint-præsentation
putUpdateNotesSlideRequest.SlideIndex = 1;
// NotesSlide object
putUpdateNotesSlideRequest.Dto = notesSlide;

// tilføj PutUpdateNotesSlideRequest til SlidesApi instans
slidesApi.PutUpdateNotesSlide(putUpdateNotesSlideRequest);
PowerPoint Slide noter opdateret

Image 3:- Slide med opdaterede noter

Læs diasnotater

PowerPoint behandlings Cloud API tilbyder også muligheden for at læse noterne fra den eksisterende slide. Du skal blot angive navnet på PowerPoint-filen og indexet for en slide, som du ønsker at læse detaljerne om noterne fra. GetNotesSlide giver dig mulighed for at opfylde dette krav.

cURL kommando

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

Response body viser diasnotater, der er udtrukket fra et specifikt dias i en PowerPoint-præsentation.

{<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>}

I tilfælde af at du har brug for at læse notater slides oplysninger for et dokument, der er angivet i anmodningskroppen, prøv venligst at bruge PostGetNotesSlide.

Slet diasnoter

API’et tilbyder DeleteNotesSlide metode til at fjerne/slette noterne fra PowerPoint-sliden.

cURL kommando

curl -X DELETE "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/1/notesSlide" -H  "accept: application/json" -H  "authorization: Bearer <jwt token>"
Noter slettet fra dias

Image 4:- PowerPoint-slide med slettede noter

Konverter noter slides til specifikt billedeformat

Du kan støde på et krav om at gengive PowerPoint-slides, der indeholder notater, til specifikke billedformater. For at opfylde dette krav skal du bruge GetNotesSlideWithFormat metoden i API’en.

cURL kommando

curl -X GET "https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide/Jpeg" -H  "accept: multipart/form-data" -H  "authorization: Bearer "

Request URL

https://api.aspose.cloud/v3.0/slides/NotesPresentation.pptx/slides/2/notesSlide/Jpeg

Som et resultat indeholder svarets krop et konverteret billede som vist nedenfor.

Second Slide with Notes

Image 5:- Forhåndsvisning af 2. slide med noter

Notes Slide exported image

Billede 6:- PowerPoint note slide konverteret til JPEG-billedeformat