AddPicture
İçindekiler
[
Saklamak
]AddPicture(int, int, int, int, Stream)
Koleksiyona bir resim ekler.
public Picture AddPicture(int upperLeftRow, int upperLeftColumn, int lowerRightRow,
int lowerRightColumn, Stream stream)
Parametre | Tip | Tanım |
---|---|---|
upperLeftRow | Int32 | Sol üst satır dizini. |
upperLeftColumn | Int32 | Sol üst sütun dizini. |
lowerRightRow | Int32 | Sağ alt satır dizini |
lowerRightColumn | Int32 | Sağ alt sütun dizini |
stream | Stream | Görüntü verilerini içeren akış nesnesi. |
Geri dönüş değeri
Picture
Resim nesnesi.
Örnekler
[C#]
//resim ekle
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
Picture picture = shapes.AddPicture(1, 0, 1, 0, fs);
}
Ayrıca bakınız
- class Picture
- class ShapeCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells
AddPicture(int, int, Stream, int, int)
Koleksiyona bir resim ekler.
public Picture AddPicture(int upperLeftRow, int upperLeftColumn, Stream stream, int widthScale,
int heightScale)
Parametre | Tip | Tanım |
---|---|---|
upperLeftRow | Int32 | Sol üst satır dizini. |
upperLeftColumn | Int32 | Sol üst sütun dizini. |
stream | Stream | Görüntü verilerini içeren akış nesnesi. |
widthScale | Int32 | Görüntü genişliği ölçeği, bir yüzde. |
heightScale | Int32 | Görüntü yüksekliği ölçeği, yüzde. |
Geri dönüş değeri
Picture
Resim nesnesi.
Örnekler
[C#]
//resim ekle
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
Picture picture = shapes.AddPicture(1, 1, fs, 50, 60);
}
Ayrıca bakınız
- class Picture
- class ShapeCollection
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells