ToImage
Contenuti
[
Nascondere
]ToImage(Stream, ImageType)
Crea l’immagine della forma e la salva in un flusso nel formato specificato.
public void ToImage(Stream stream, ImageType imageType)
Parametro | Tipo | Descrizione |
---|---|---|
stream | Stream | Il flusso di output. |
imageType | ImageType | Il tipo in cui salvare l’immagine. |
Osservazioni
Sono supportati i seguenti formati: .bmp, .gif, .jpg, .jpeg, .tiff, .emf.
Esempi
[C#]
MemoryStream imageStream = new MemoryStream();
shape.ToImage(imageStream, ImageType.Png);
Guarda anche
- enum ImageType
- class Shape
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells
ToImage(string, ImageOrPrintOptions)
Salva la forma in un file.
public void ToImage(string imageFile, ImageOrPrintOptions options)
Esempi
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage("exmaple.png", op);
Guarda anche
- class ImageOrPrintOptions
- class Shape
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells
ToImage(Stream, ImageOrPrintOptions)
Salva la forma in un flusso.
public void ToImage(Stream stream, ImageOrPrintOptions options)
Esempi
[C#]
MemoryStream imageStream = new MemoryStream();
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage(imageStream, op);
Guarda anche
- class ImageOrPrintOptions
- class Shape
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells
ToImage(ImageOrPrintOptions)
Restituisce l’oggetto bitmap della forma .
public Bitmap ToImage(ImageOrPrintOptions options)
Esempi
[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
System.Drawing.Bitmap btm = shape.ToImage(op);
Guarda anche
- class ImageOrPrintOptions
- class Shape
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells