إضافة صورة إلى PowerPoint باستخدام C# REST API

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

متطلب أساسي

خطوات إضافة صورة في PowerPoint باستخدام واجهة برمجة التطبيقات المستندة إلى C# .NET

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

تلخص هذه الخطوات كيفية إضافة صورة إلى PowerPoint باستخدام واجهة C# REST. قم بتحميل العرض التقديمي المصدر إلى التخزين السحابي، وقم بإعداد الصورة باستخدام طريقة ToBase64String() في مساحة اسم Convert، واستخدم هذه الصورة لإنشاء كائن PictureFrame. أخيرًا، اتصل بطريقة CreateShape() لإضافة الصورة إلى الشريحة المحددة وتنزيل العرض التقديمي المحدث.

كود إضافة الصور إلى شرائح PowerPoint باستخدام C# REST API

using Aspose.Slides.Cloud.Sdk;
using Aspose.Slides.Cloud.Sdk.Model;
using System;
using System.Diagnostics;
using System.IO;
namespace SlideModification
{
class SlideEditor
{
static void Main(string[] args)
{
// Initialize the Slides API client with user credentials.
var slidesClient = new SlidesApi("User ID", "Key");
// Upload the presentation file to the cloud.
var uploadResponse = slidesClient.UploadFile(
"Presentation.pptx",
new MemoryStream(File.ReadAllBytes("Presentation.pptx")));
// Read image
var imageBytes = File.ReadAllBytes("ImageFile.png");
var base64Image = Convert.ToBase64String(imageBytes);
// Define the image properties and position.
var imageShape = new PictureFrame
{
X = 50,
Y = 50,
Width = 350,
Height = 250,
PictureFillFormat = new PictureFill
{
Base64Data = base64Image,
PictureFillMode = PictureFill.PictureFillModeEnum.Stretch
}
};
// Add the image to the third slide of the presentation.
var shapeResponse = slidesClient.CreateShape("Presentation.pptx", 3, imageShape);
// Output the URI of the newly added image shape.
Debug.WriteLine($"Image added at: {shapeResponse.SelfUri.Href}");
// Download the modified presentation file.
using (var downloadedFile = slidesClient.DownloadFile("Presentation.pptx"))
using (var fileStream = new FileStream("UpdatedPresentation.pptx", FileMode.Create, FileAccess.Write))
{
downloadedFile.CopyTo(fileStream);
}
Console.WriteLine("Image successfully added to the slide.");
}
}
}

يوضح هذا الكود النموذجي كيفية وضع صورة على PowerPoint باستخدام خدمة C# RESTful. يمكنك تحديد موضع بداية الصورة عن طريق تعيين خصائص X وY في كائن PictureFrame، وتحديد وضع ملء الصورة باستخدام كائن فئة PictureFill. تحدد خاصية PictureFrame حجم الصورة على الشريحة بغض النظر عن الحجم الأصلي.

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

 عربي