Add
内容
[
隐藏
]Add(int, int, int, int, Stream)
将图片添加到集合中。
public int Add(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))
{
pictures.Add(1, 1, 5, 5, fs);
}
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
Add(int, int, int, int, string)
将图片添加到集合中。
public int Add(int upperLeftRow, int upperLeftColumn, int lowerRightRow, int lowerRightColumn,
string fileName)
范围 | 类型 | 描述 |
---|---|---|
upperLeftRow | Int32 | 左上行索引。 |
upperLeftColumn | Int32 | 左上列索引。 |
lowerRightRow | Int32 | 右下行索引 |
lowerRightColumn | Int32 | 右下列索引 |
fileName | String | 图像文件名。 |
返回值
Picture
对象索引。
例子
[C#]
//添加图片
pictures.Add(1, 1, 5, 5, "image.jpg");
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
Add(int, int, Stream)
将图片添加到集合中。
public int Add(int upperLeftRow, int upperLeftColumn, Stream stream)
范围 | 类型 | 描述 |
---|---|---|
upperLeftRow | Int32 | 左上行索引。 |
upperLeftColumn | Int32 | 左上列索引。 |
stream | Stream | 包含图像数据的流对象。 |
返回值
Picture
对象索引。
例子
[C#]
//添加图片
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
pictures.Add(1, 1, fs);
}
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
Add(int, int, string)
将图片添加到集合中。
public int Add(int upperLeftRow, int upperLeftColumn, string fileName)
范围 | 类型 | 描述 |
---|---|---|
upperLeftRow | Int32 | 左上行索引。 |
upperLeftColumn | Int32 | 左上列索引。 |
fileName | String | 图像文件名。 |
返回值
Picture
对象索引。
例子
[C#]
//添加图片
pictures.Add(1, 1, "image.jpg");
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
Add(int, int, Stream, int, int)
将图片添加到集合中。
public int Add(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))
{
pictures.Add(1, 1, fs, 50, 50);
}
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
Add(int, int, string, int, int)
将图片添加到集合中。
public int Add(int upperLeftRow, int upperLeftColumn, string fileName, int widthScale,
int heightScale)
范围 | 类型 | 描述 |
---|---|---|
upperLeftRow | Int32 | 左上行索引。 |
upperLeftColumn | Int32 | 左上列索引。 |
fileName | String | 图像文件名。 |
widthScale | Int32 | 图像宽度的比例,百分比。 |
heightScale | Int32 | 图像高度的比例,百分比。 |
返回值
Picture
对象索引。
例子
[C#]
//添加图片
pictures.Add(1, 1, "image.jpg", 50, 50);
也可以看看
- class PictureCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells