Infoga bakgrundsbild till Excel
Contents
[
Hide
]
Du kan göra ett kalkylblad mer tilltalande genom att lägga till en bild som kalkylbladsbakgrund. Den här funktionen kan vara ganska effektiv om du har en speciell företagsgrafik som lägger till en antydan om bakgrunden utan att dölja data på arket. Du kan ställa in bakgrundsbild för ett ark med Aspose.Cells API.
Inställning av arkbakgrund i Microsoft Excel
Så här ställer du in ett arks bakgrundsbild i Microsoft Excel (till exempel Microsoft Excel 2019):
-
FrånSidlayout menyn, hittaUtskriftsformat och klicka sedan påBakgrund alternativ.
-
Välj en bild för att ställa in arkets bakgrundsbild.
Ställa in en arkbakgrund
Inställningsarkbakgrund med Aspose.Cells
Koden nedan ställer in en bakgrundsbild med en bild från en ström.
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"); |