ToImage
内容
[
隐藏
]ToImage(Stream, ImageType)
创建形状图像并将其保存到指定格式的流中。
public void ToImage(Stream stream, ImageType imageType)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 输出流。 |
imageType | ImageType | 保存图像的类型。 |
评论
支持以下格式: .bmp、.gif、.jpg、.jpeg、.tiff、.emf。
例子
[C#]
MemoryStream imageStream = new MemoryStream();
shape.ToImage(imageStream, ImageType.Png);
也可以看看
- enum ImageType
- class Shape
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
ToImage(string, ImageOrPrintOptions)
将形状保存到文件中。
public void ToImage(string imageFile, ImageOrPrintOptions options)
例子
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage("exmaple.png", op);
也可以看看
- class ImageOrPrintOptions
- class Shape
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
ToImage(Stream, ImageOrPrintOptions)
将形状保存到流中。
public void ToImage(Stream stream, ImageOrPrintOptions options)
例子
[C#]
MemoryStream imageStream = new MemoryStream();
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage(imageStream, op);
也可以看看
- class ImageOrPrintOptions
- class Shape
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells
ToImage(ImageOrPrintOptions)
返回形状 . 的位图对象
public Bitmap ToImage(ImageOrPrintOptions options)
例子
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
System.Drawing.Bitmap btm = shape.ToImage(op);
也可以看看
- class ImageOrPrintOptions
- class Shape
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells