عرض الشريحة كصور مصغرة بصيغة JPEG وفقًا لقيم يحددها المستخدم
Contents
[
Hide
]
لتوليد الصورة المصغرة لأي شريحة مرغوبة باستخدام Aspose.Slides لـ .NET:
- إنشاء مثيل من فئة Presentation.
- الحصول على مرجع لأي شريحة مرغوبة باستخدام معرّفها أو فهرسها.
- الحصول على عوامل قياس X و Y بناءً على الأبعاد المحددة من قبل المستخدم.
- الحصول على صورة مصغرة للشريحة المرجعية على مقياس محدد.
- حفظ الصورة المصغرة بأي صيغة صورة مرغوبة.
string filePath = @"..\..\..\Sample Files\";
string srcFileName = filePath + "صورة مصغرة محددة من قبل المستخدم.pptx";
string destFileName = filePath + "صورة مصغرة محددة من قبل المستخدم.jpg";
//Instantiate the Presentation class that represents the presentation file
using (Presentation pres = new Presentation(srcFileName))
{
//Access the first slide
ISlide sld = pres.Slides[0];
//User defined dimension
int desiredX = 1200;
int desiredY = 800;
//Getting scaled value of X and Y
float scaleX = (float)(1.0 / pres.SlideSize.Size.Width) * desiredX;
float scaleY = (float)(1.0 / pres.SlideSize.Size.Height) * desiredY;
//Create a full scale image
using (IImage image = sld.GetImage(scaleX, scaleY))
{
//Save the image to disk in JPEG format
image.Save(destFileName, ImageFormat.Jpeg);
}
}