ToImage
Innehåll
[
Dölj
]ToImage(Stream, ImageType)
Skapar formbilden och sparar den i en ström i angivet format.
public void ToImage(Stream stream, ImageType imageType)
Parameter | Typ | Beskrivning |
---|---|---|
stream | Stream | Utgångsströmmen. |
imageType | ImageType | Typen där bilden ska sparas. |
Anmärkningar
Följande format stöds: .bmp, .gif, .jpg, .jpeg, .tiff, .emf.
Exempel
[C#]
MemoryStream imageStream = new MemoryStream();
shape.ToImage(imageStream, ImageType.Png);
Se även
- enum ImageType
- class Shape
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells
ToImage(string, ImageOrPrintOptions)
Sparar formen till en fil.
public void ToImage(string imageFile, ImageOrPrintOptions options)
Exempel
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage("exmaple.png", op);
Se även
- class ImageOrPrintOptions
- class Shape
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells
ToImage(Stream, ImageOrPrintOptions)
Sparar formen i en ström.
public void ToImage(Stream stream, ImageOrPrintOptions options)
Exempel
[C#]
MemoryStream imageStream = new MemoryStream();
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage(imageStream, op);
Se även
- class ImageOrPrintOptions
- class Shape
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells
ToImage(ImageOrPrintOptions)
Returnerar bitmappsobjektet för formen .
public Bitmap ToImage(ImageOrPrintOptions options)
Exempel
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
System.Drawing.Bitmap btm = shape.ToImage(op);
Se även
- class ImageOrPrintOptions
- class Shape
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells