AddPicture

AddPicture(int, int, int, int, Stream)

Fügt der Sammlung ein Bild hinzu.

public Picture AddPicture(int upperLeftRow, int upperLeftColumn, int lowerRightRow, 
    int lowerRightColumn, Stream stream)
ParameterTypBeschreibung
upperLeftRowInt32Zeilenindex oben links.
upperLeftColumnInt32Spaltenindex oben links.
lowerRightRowInt32Zeilenindex unten rechts
lowerRightColumnInt32Spaltenindex unten rechts
streamStreamStream-Objekt, das die Bilddaten enthält.

Rückgabewert

Picture Bildobjekt.

Beispiele


[C#]
//Bild hinzufügen
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
    Picture picture = shapes.AddPicture(1, 0, 1, 0, fs);
}

Siehe auch


AddPicture(int, int, Stream, int, int)

Fügt der Sammlung ein Bild hinzu.

public Picture AddPicture(int upperLeftRow, int upperLeftColumn, Stream stream, int widthScale, 
    int heightScale)
ParameterTypBeschreibung
upperLeftRowInt32Zeilenindex oben links.
upperLeftColumnInt32Spaltenindex oben links.
streamStreamStream-Objekt, das die Bilddaten enthält.
widthScaleInt32Maßstab der Bildbreite, ein Prozentsatz.
heightScaleInt32Maßstab der Bildhöhe, ein Prozentsatz.

Rückgabewert

Picture Bildobjekt.

Beispiele


[C#]
//Bild hinzufügen
using (FileStream fs = new FileStream("image.jpg", FileMode.Open))
{
    Picture picture = shapes.AddPicture(1, 1, fs, 50, 60);
}

Siehe auch