Hintergrundbild in Excel einfügen
Contents
[
Hide
]
Sie können ein Arbeitsblatt ansprechender gestalten, indem Sie ein Bild als Arbeitsblatthintergrund hinzufügen. Diese Funktion kann sehr effektiv sein, wenn Sie eine spezielle Unternehmensgrafik haben, die einen Hauch des Hintergrunds hinzufügt, ohne die Daten auf dem Blatt zu verdecken. Mit Aspose.Cells API können Sie ein Hintergrundbild für ein Blatt festlegen.
Einstellungsblatthintergrund in Microsoft Excel
So legen Sie das Hintergrundbild eines Blatts in Microsoft Excel fest (z. B. Microsoft Excel 2019):
-
Von demSeitenlayout Menü finden Sie dieSeiteneinrichtung Option, und klicken Sie dann auf dieHintergrund Möglichkeit.
-
Wählen Sie ein Bild aus, um das Hintergrundbild des Blatts festzulegen.
Festlegen eines Blatthintergrunds
Einstellblatthintergrund mit Aspose.Cells
Der folgende Code legt ein Hintergrundbild mit einem Bild aus einem Stream fest.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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"); |