
מצגות PowerPoint מכילות מאפיינים שמכילים פרטים על המצגת כגון כותרת, שם מחבר, נושא ומילות מפתח שמזוהות עם נושא או תוכן המסמך, וכו’. חשוב לציין ערכים רלוונטיים עבור מאפייני המצגת כי הם מסייעים לזהות את המצגת. בעוד שמפתחים הפרטים של השקפים במצגת מכילים מאפיינים המצורפים להם כגון גובה, רוחב, כיוון, אינדקס שקף במצגת, סוג גודל, וכו’. Aspose.Slides Cloud מאפשרת לך לתכנת את הגדרות ההגנה של PPTX.
טיפ קצר
השתמש במילה הבאה כדי לזהות את הגרסה המארחת הנוכחית של Aspose.Slides Cloud API,
curl -X GET "https://api.aspose.cloud/v3.0/slides/info" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"
Response Body
{ "name": "Aspose.Slides for Cloud", "version": "21.1.0" }
עכשיו נבוא להאיר כמה נקודות בנוגע לנושאים הבאים בבלוג הזה.
קבל את מאפייני שקף
Aspose.Slides Cloud מספקת את האפשרויות להשיג את מאפייני השקף באמצעות פקודת cURL ובאותו הזמן, אתה יכול לנסות להשתמש ב-SDK של שפות תכנות ספציפיות כדי למלא את הצרכים שלך.
cURL command
curl -X GET "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"
Request URL
https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties
Response Body
{ "firstSlideNumber": **1**, "orientation": "Landscape", "sizeType": "Widescreen", "width": **960**, "height": **540**, "selfUri": { "href": "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties", "relation": "self" } }
C# .NET
// complete examples can be found over https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet
string MyAppKey = "xxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
string MyAppSid = "xxxxxxxxx"; // Get AppKey and AppSID from https://dashboard.aspose.cloud/
try
{
// instantiate SlidesAPI object
Aspose.Slides.Cloud.Sdk.SlidesApi slidesApi = new Aspose.Slides.Cloud.Sdk.SlidesApi(Client_ID, Client_Secret);
// צור אובייקט GetSlidesSlidePropertiesRequest וספק הפניה לקובץ PPTX
GetSlidesSlidePropertiesRequest request = new GetSlidesSlidePropertiesRequest { Name = "input.pptx" };
// קרא את מאפייני השקף
SlideProperties slideProperties = slidesApi.GetSlidesSlideProperties(request);
// הצג פרטי מספר שקף ראשון
Console.WriteLine(slideProperties.FirstSlideNumber);
// print orientation details of slide
Console.WriteLine(slideProperties.Orientation);
// print the height details for slide
Console.WriteLine(slideProperties.Height);
// print width details for slide
Console.WriteLine(slideProperties.Width);
// print information related to scaleType
Console.WriteLine(slideProperties.ScaleType);
}
catch (Exception e)
{
Console.WriteLine("Exception while calling Api: " + e.ToString());
}
הגדר את מאפייני שקף PPTX
עם זאת, Aspose.Slides Cloud מסוגל לחלוטין לקבוע את התכונות עבור שקפים של PowerPoint ובסעיף הבא, הסברנו את הצעדים הקשורים.
cURL command
curl -X PUT "https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>" \
-H "Content-Type: application/json" \
-d "{ \"FirstSlideNumber\": 0, \"Orientation\": \"Portrait\", \"ScaleType\": \"DoNotScale\", \"SizeType\": \"OnScreen\", \"Width\": 600, \"Height\": 900, \"SelfUri\": { \"Href\": \"https://api.aspose.cloud/v3.0/slides/input.pptx/slideProperties\", \"Relation\": \"self\", \"LinkType\": \"\", \"Title\": \"Hello\" }, \"AlternateLinks\": [ { \"Href\": \"string\", \"Relation\": \"string\", \"LinkType\": \"string\", \"Title\": \"string\" } ]}"
C# .NET
// please viist following link for complete source code https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet
try
{
String Client_ID = "xxxxxxxx-1c8e-4ea4-a948-3857547232fa";
String Client_Secret = "xxxxxxxx237f013e329cdf5694cc96a";
// אינסטנציה של אובייקט SlidesAPI
Aspose.Slides.Cloud.Sdk.SlidesApi slidesApi = new Aspose.Slides.Cloud.Sdk.SlidesApi(Client_ID, Client_Secret);
// יצר אובייקט PutSlidesSlidePropertiesRequest וספק קובץ PPTX כארגומנט
PutSlidesSlidePropertiesRequest request = new PutSlidesSlidePropertiesRequest {
// speicfy input PowerPoint presentation
Name = "input.pptx",
Dto = new SlideProperties {
Width = 900,
Height = 600,
Orientation = SlideProperties.OrientationEnum.Portrait,
ScaleType = SlideProperties.ScaleTypeEnum.DoNotScale,
SizeType = SlideProperties.SizeTypeEnum.OnScreen,
}
};
SlideProperties response = slidesApi.PutSlidesSlideProperties(request);
// קרא את מאפיין הרוחב של שקף
Console.WriteLine(response.Width);
// קרא את מאפיין הגובה של שקף
Console.WriteLine(response.Height);
}
catch (Exception e)
{
Console.WriteLine("Exception while calling Api: " + e.ToString());
}
קבל את מאפייני הגנת השקף
שיטת GetSlidesProtectionProperties של ה-API מספקת את היכולות לקרוא את מאפייני ההגנה של מסמכי מצגות.
curl -X GET "https://api.aspose.cloud/v3.0/slides/input.pptx/protectionProperties" \
-H "accept: application/json" \
-H "authorization: Bearer <JWT Token>"
C# .NET
// please viist following link for complete source code https://github.com/aspose-slides-cloud/aspose-slides-cloud-dotnet
try
{
String Client_ID = "xxxxxxx-1c8e-4ea4-a948-3857547232fa";
String Client_Secret = "xxxxxxxx237f013e329cdf5694cc96a";
// instantiate SlidesAPI object
SlidesApi slidesApi = new SlidesApi(Client_ID, Client_Secret);
// צור אובייקט PutSlidesSlidePropertiesRequest וספק קובץ PPTX כארגומנט
GetSlidesProtectionPropertiesRequest request = new GetSlidesProtectionPropertiesRequest
{
// speicfy input PowerPoint presentation
Name = "input.pptx",
};
ProtectionProperties slideProperties = slidesApi.GetSlidesProtectionProperties(request);
// קרא את מאפיין הרוחב של השקופית
Console.WriteLine("Encrypted Document Properties = "+slideProperties.EncryptDocumentProperties);
Console.WriteLine("Read Only Recommended = "+slideProperties.ReadOnlyRecommended);
Console.WriteLine("Self URi = " + slideProperties.SelfUri);
}
catch (Exception e)
{
Console.WriteLine("Exception while calling Api: " + e.ToString());
}
שיטות מיושנות
שיטת PUT fromHtml אינה בשימוש יותר ותימחק בגרסה 21.4. השתמש בשיטת POST fromHtml כדי ליצור מצגות ואולי גם להוסיף להן שקפים חדשים.
משאב slideSize מוסר והולך להימחק בעדכון 21.4. השתמש במשאב slideProperties במקום.
סיכום
במאמר זה, חקרנו את היכולות של Aspose.Slides Cloud כדי להגדיר את מאפייני ההגנה של PPTX, לקבל את מאפייני ההגנה של שקף, לקבל את מאפייני השקף באמצעות C# .NET כמו גם פקודת cURL. תוכלו בקלות להוריד את הקוד המקורי המלא של Aspose.Slides Cloud SDK עבור .NET מ- GitHub. כדי ללמוד עוד על יכולות ה-SDK, נא חקרו את ה- Developer Guide.