AddPicture

AddPicture(int, int, int, int, Stream)

يضيف صورة إلى المجموعة.

public Picture AddPicture(int upperLeftRow, int upperLeftColumn, int lowerRightRow, 
    int lowerRightColumn, Stream stream)
معامليكتبوصف
upperLeftRowInt32فهرس الصف العلوي الأيسر.
upperLeftColumnInt32فهرس العمود الأيسر العلوي.
lowerRightRowInt32فهرس الصف السفلي الأيمن
lowerRightColumnInt32فهرس العمود الأيمن السفلي
streamStreamكائن دفق يحتوي على بيانات الصورة.

قيمة الإرجاع

Picture كائن الصورة.

أمثلة


[C#]
// إضافة صورة
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
    Picture picture = shapes.AddPicture(1, 0, 1, 0, fs);
}

أنظر أيضا


AddPicture(int, int, Stream, int, int)

يضيف صورة إلى المجموعة.

public Picture AddPicture(int upperLeftRow, int upperLeftColumn, Stream stream, int widthScale, 
    int heightScale)
معامليكتبوصف
upperLeftRowInt32فهرس الصف العلوي الأيسر.
upperLeftColumnInt32فهرس العمود الأيسر العلوي.
streamStreamكائن دفق يحتوي على بيانات الصورة.
widthScaleInt32مقياس عرض الصورة ، نسبة مئوية.
heightScaleInt32مقياس ارتفاع الصورة ، نسبة مئوية.

قيمة الإرجاع

Picture كائن الصورة.

أمثلة


[C#]
// إضافة صورة
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
    Picture picture = shapes.AddPicture(1, 1, fs, 50, 60);
}

أنظر أيضا