إنشاء صورة مصغرة من شريحة مع أبعاد محددة من قبل المستخدم
Contents
[
Hide
]
لإنشاء صورة مصغرة لأي شريحة مرغوبة باستخدام Aspose.Slides لـ .NET:
- انشئ مثيل من فئة Presentation.
- احصل على مرجع لأي شريحة مرغوبة باستخدام معرفها أو فهرسها.
- احصل على عوامل التحجيم X و Y بناءً على الأبعاد المحددة من قبل المستخدم.
- احصل على صورة مصغرة للشريحة المرجعية بمقياس محدد.
- قم بحفظ صورة المصغرة في أي تنسيق صورة مرغوب.
مثال
//Instantiate the Presentation class that represents the presentation file
using (Presentation pres = new Presentation("TestPresentation.pptx"))
{
//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("Thumbnail2.jpg", ImageFormat.Jpeg);
}
}
تحميل المثال القابل للتشغيل
- [CodePlex](https://asposeslidesvsto.codeplex.com/SourceControl/latest#Aspose.Slides Features missing in VSTO/User Defined Thumbnail/)
- GitHub
- Code.MSDN
تحميل كود العينة
للحصول على مزيد من التفاصيل، قم بزيارة إنشاء صورة مصغرة للشرائح.