ToImage

ToImage(Stream, ImageType)

Crée l’image de la forme et l’enregistre dans un flux au format spécifié.

public void ToImage(Stream stream, ImageType imageType)
ParamètreTaperLa description
streamStreamLe flux de sortie.
imageTypeImageTypeLe type dans lequel enregistrer l’image.

Remarques

Les formats suivants sont pris en charge : .bmp, .gif, .jpg, .jpeg, .tiff, .emf.

Exemples


[C#]
MemoryStream imageStream = new MemoryStream();
shape.ToImage(imageStream, ImageType.Png);

Voir également


ToImage(string, ImageOrPrintOptions)

Enregistre la forme dans un fichier.

public void ToImage(string imageFile, ImageOrPrintOptions options)

Exemples


[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage("exmaple.png", op);

Voir également


ToImage(Stream, ImageOrPrintOptions)

Enregistre la forme dans un flux.

public void ToImage(Stream stream, ImageOrPrintOptions options)

Exemples


[C#]
MemoryStream imageStream = new MemoryStream();
ImageOrPrintOptions op = new ImageOrPrintOptions();
shape.ToImage(imageStream, op);

Voir également


ToImage(ImageOrPrintOptions)

Renvoie l’objet bitmap de la forme .

public Bitmap ToImage(ImageOrPrintOptions options)

Exemples


[C#]
ImageOrPrintOptions op = new ImageOrPrintOptions();
System.Drawing.Bitmap btm = shape.ToImage(op);

Voir également