ToImage
Inhalt
[
Ausblenden
]ToImage(Stream, ImageType)
Erstellt das Formbild und speichert es im angegebenen Format in einem Stream.
public void ToImage(Stream stream, ImageType imageType)
Parameter | Typ | Beschreibung |
---|---|---|
stream | Stream | Der Ausgangsstrom. |
imageType | ImageType | Der Typ, in dem das Bild gespeichert werden soll. |
Bemerkungen
Folgende Formate werden unterstützt: .bmp, .gif, .jpg, .jpeg, .tiff, .emf.
Beispiele
[C#]
MemoryStream imageStream = new MemoryStream();
shape.ToImage(imageStream, ImageType.Png);
Siehe auch
- enum ImageType
- class Shape
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells
ToImage(string, ImageOrPrintOptions)
Speichert die Form in einer Datei.
public void ToImage(string imageFile, ImageOrPrintOptions options)
Beispiele
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage("exmaple.png", op);
Siehe auch
- class ImageOrPrintOptions
- class Shape
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells
ToImage(Stream, ImageOrPrintOptions)
Speichert die Form in einem Stream.
public void ToImage(Stream stream, ImageOrPrintOptions options)
Beispiele
[C#]
MemoryStream imageStream = new MemoryStream();
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage(imageStream, op);
Siehe auch
- class ImageOrPrintOptions
- class Shape
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells
ToImage(ImageOrPrintOptions)
Gibt das Bitmap-Objekt der Form . zurück
public Bitmap ToImage(ImageOrPrintOptions options)
Beispiele
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
System.Drawing.Bitmap btm = shape.ToImage(op);
Siehe auch
- class ImageOrPrintOptions
- class Shape
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells