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对象索引。

也可以看看


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对象索引。

也可以看看


Add(int, int, Stream)

将图片添加到集合中。

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

返回值

Picture对象索引。

也可以看看


Add(int, int, string)

将图片添加到集合中。

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

返回值

Picture对象索引。

也可以看看


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对象索引。

也可以看看