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