Add

Add(int, int, int, int, Stream)

将图片添加到集合中。

public int Add(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))
{
    pictures.Add(1, 1, 5, 5, fs);
}

也可以看看


Add(int, int, int, int, string)

将图片添加到集合中。

public int Add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn, 
    string fileName)
范围类型描述
upperLeftRowInt32左上行索引。
upperLeftColumnInt32左上列索引。
lowerRightRowInt32右下行索引
lowerRightColumnInt32右下列索引
fileNameString图像文件名。

返回值

Picture对象索引。

例子


[C#]
//添加图片
pictures.Add(1, 1, 5, 5, "image.jpg");

也可以看看


Add(int, int, Stream)

将图片添加到集合中。

public int Add(int upperLeftRow, int upperLeftColumn, Stream stream)
范围类型描述
upperLeftRowInt32左上行索引。
upperLeftColumnInt32左上列索引。
streamStream包含图像数据的流对象。

返回值

Picture对象索引。

例子


[C#]
//添加图片
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
    pictures.Add(1, 1, fs);
}

也可以看看


Add(int, int, string)

将图片添加到集合中。

public int Add(int upperLeftRow, int upperLeftColumn, string fileName)
范围类型描述
upperLeftRowInt32左上行索引。
upperLeftColumnInt32左上列索引。
fileNameString图像文件名。

返回值

Picture对象索引。

例子


[C#]
//添加图片
pictures.Add(1, 1, "image.jpg");

也可以看看


Add(int, int, Stream, int, int)

将图片添加到集合中。

public int Add(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))
{
    pictures.Add(1, 1, fs, 50, 50);
}

也可以看看


Add(int, int, string, int, int)

将图片添加到集合中。

public int Add(int upperLeftRow, int upperLeftColumn, string fileName, int widthScale, 
    int heightScale)
范围类型描述
upperLeftRowInt32左上行索引。
upperLeftColumnInt32左上列索引。
fileNameString图像文件名。
widthScaleInt32图像宽度的比例,百分比。
heightScaleInt32图像高度的比例,百分比。

返回值

Picture对象索引。

例子


[C#]
//添加图片
pictures.Add(1, 1, "image.jpg", 50, 50);

也可以看看