Hintergrundbild in Excel einfügen

Einstellungsblatthintergrund in Microsoft Excel

So legen Sie das Hintergrundbild eines Blatts in Microsoft Excel fest (z. B. Microsoft Excel 2019):

  1. Von demSeitenlayout Menü finden Sie dieSeiteneinrichtung Option, und klicken Sie dann auf dieHintergrund Möglichkeit.

  2. Wählen Sie ein Bild aus, um das Hintergrundbild des Blatts festzulegen.

    Festlegen eines Blatthintergrunds

todo: Bild_alt_Text

Einstellblatthintergrund mit Aspose.Cells

Der folgende Code legt ein Hintergrundbild mit einem Bild aus einem Stream fest.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// Create a new Workbook.
Workbook workbook = new Workbook();
// Get the first worksheet.
Worksheet sheet = workbook.getWorksheets().get(0);
// Get the image file.
File file = new File("background.jpg");
// Get the picture into the streams.
byte[] imageData = new byte[(int) file.length()];
FileInputStream fis = new FileInputStream(file);
fis.read(imageData);
// Set the background image for the sheet.
sheet.setBackgroundImage(imageData);
fis.close();
// Save the excel file
workbook.save("SBPforWorksheet.xlsx");

Zum Thema passende Artikel