أضف SmartArt إلى PowerPoint باستخدام C# REST API

توضح هذه المقالة كيفية إضافة SmartArt إلى PowerPoint باستخدام C# REST API. سوف تتعلم كيفية إدراج PowerPoint SmartArt مع C# Low Code API تلقائيًا باستخدام Cloud SDK المستند إلى .NET. تتم مناقشة مختلف الفئات والعدادين لإنشاء أنواع مختلفة من SmartArt في شريحة عرض PowerPoint التقديمي.

الشرط الأساسي

خطوات لإضافة عرض تقديمي لـ PowerPoint SmartArt باستخدام C# REST API

  1. قم بتعيين بيانات الاعتماد في كائن SlidesApi للعمل مع SmartArt
  2. قم بتحميل العرض التقديمي المصدر إلى وحدة التخزين السحابية لإدراج الرسومات الذكية
  3. قم بإنشاء بيانات رسومات عن طريق تعيين الخصائص المطلوبة في كائن SmartArt
  4. أدخل SmartArt باستخدام طريقة CreateShape().
  5. قم بتنزيل ملف العرض التقديمي المحدث بعد إضافة SmartArt إليه

تشرح هذه الخطوات كيفية العمل مع SmartArt for PowerPoint with C# REST API. قم بإنشاء كائن فئة SlidesApi، وتحميل العرض التقديمي المصدر، وإنشاء كائن SmartArt بالإعدادات المحددة بما في ذلك الموضع والحجم والتخطيط والنمط السريع ونمط اللون. وأخيرًا، تتم إضافة عقد متعددة لـ SmartArt إلى الشريحة المعنية باستخدام طريقة CreateShape().

رمز لإضافة أشكال PowerPoint الذكية باستخدام C# .NET-Based API

using Aspose.Slides.Cloud.Sdk;
using Aspose.Slides.Cloud.Sdk.Model;
using System;
using System.Collections.Generic;
using System.IO;
namespace AsposeSlidesExample
{
class Program
{
static void Main(string[] args)
{
// Initialize the Slides API with your credentials
var apiClient = new SlidesApi("your_api_key", "your_app_sid");
// Define the presentation file name
string presentationName = "SamplePresentation.pptx";
string localFilePath = "SamplePresentation.pptx";
// Upload the presentation to Aspose Cloud storage
var uploadResponse = apiClient.UploadFile(presentationName, new MemoryStream(File.ReadAllBytes(localFilePath)));
Console.WriteLine("File uploaded successfully.");
// Configure SmartArt properties
var smartArt = new SmartArt
{
X = 50, // Horizontal position of the SmartArt
Y = 50, // Vertical position of the SmartArt
Width = 250, // Width of the SmartArt
Height = 250, // Height of the SmartArt
Layout = SmartArt.LayoutEnum.BendingPictureSemiTransparentText, // SmartArt layout
QuickStyle = SmartArt.QuickStyleEnum.SimpleFill, // Quick style
ColorStyle = SmartArt.ColorStyleEnum.ColoredFillAccent1, // Color style
Nodes = new List<SmartArtNode>
{
new SmartArtNode { Text = "Planning" },
new SmartArtNode { Text = "Design" },
new SmartArtNode { Text = "Implementation" }
}
};
// Add SmartArt to the first slide
var addedSmartArt = apiClient.CreateShape(presentationName, 1, smartArt);
Console.WriteLine("SmartArt added to the presentation successfully.");
// Download the updated presentation
var updatedPresentationStream = apiClient.DownloadFile(presentationName);
string updatedFileName = "UpdatedPresentation.pptx";
using (var fileStream = new FileStream(updatedFileName, FileMode.Create, FileAccess.Write))
{
updatedPresentationStream.CopyTo(fileStream);
}
Console.WriteLine($"Presentation saved as '{updatedFileName}'.");
}
}
}

يوضح هذا الرمز كيفية إدراج Smart Art Graphic مع واجهة C# REST في الشريحة. استخدم LayoutEnum لتحديد شكل SmartArt المطلوب من قائمة كبيرة من القيم بما في ذلك AccentProcess، وAccentedPicture، وArrowRibbon، وBasicPyramid، وBasicProcess، وما إلى ذلك. وبالمثل، فإن عدادات النمط السريع ونمط الألوان لديها أيضًا مجموعة متنوعة من الخيارات لتخصيص SmartArt.

لقد علمتنا هذه المقالة كيفية إنشاء SmartArt في شريحة العرض التقديمي. لإضافة أشكال مخصصة في عرض تقديمي، راجع المقالة الموجودة على قم بإنشاء أشكال مخصصة في PowerPoint باستخدام C# REST API.

 عربي