AddPicture
محتويات
[
يخفي
]AddPicture(int, int, int, int, Stream)
يضيف صورة إلى المجموعة.
public Picture AddPicture(int upperLeftRow, int upperLeftColumn, int lowerRightRow,
int lowerRightColumn, Stream stream)
معامل | يكتب | وصف |
---|---|---|
upperLeftRow | Int32 | فهرس الصف العلوي الأيسر. |
upperLeftColumn | Int32 | فهرس العمود الأيسر العلوي. |
lowerRightRow | Int32 | فهرس الصف السفلي الأيمن |
lowerRightColumn | Int32 | فهرس العمود الأيمن السفلي |
stream | Stream | كائن دفق يحتوي على بيانات الصورة. |
قيمة الإرجاع
Picture
كائن الصورة.
أمثلة
[C#]
// إضافة صورة
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
Picture picture = shapes.AddPicture(1, 0, 1, 0, fs);
}
أنظر أيضا
- class Picture
- class ShapeCollection
- مساحة الاسم Aspose.Cells.Drawing
- المجسم Aspose.Cells
AddPicture(int, int, Stream, int, int)
يضيف صورة إلى المجموعة.
public Picture AddPicture(int upperLeftRow, int upperLeftColumn, Stream stream, int widthScale,
int heightScale)
معامل | يكتب | وصف |
---|---|---|
upperLeftRow | Int32 | فهرس الصف العلوي الأيسر. |
upperLeftColumn | Int32 | فهرس العمود الأيسر العلوي. |
stream | Stream | كائن دفق يحتوي على بيانات الصورة. |
widthScale | Int32 | مقياس عرض الصورة ، نسبة مئوية. |
heightScale | Int32 | مقياس ارتفاع الصورة ، نسبة مئوية. |
قيمة الإرجاع
Picture
كائن الصورة.
أمثلة
[C#]
// إضافة صورة
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
Picture picture = shapes.AddPicture(1, 1, fs, 50, 60);
}
أنظر أيضا
- class Picture
- class ShapeCollection
- مساحة الاسم Aspose.Cells.Drawing
- المجسم Aspose.Cells