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);
}

也可以看看