Excelに背景画像を挿入する
Contents
[
Hide
]
特別な要素がシート上のデータを遮らずに背景のヒントを追加する特別な企業図形がある場合、これはワークシートをより魅力的にすることができます。Aspose.Cells APIを使用して、シートの背景画像を追加することができます。
Microsoft Excelでのシートの背景の設定方法(例:Microsoft Excel 2019):
-
ページレイアウトメニューからページの設定オプションを見つけ、背景オプションをクリックします。
-
ページレイアウトメニューからページ設定オプションを見つけ、背景オプションをクリックします。
-
シートの背景画像を設定するために画像を選択します。
シートの背景を設定する
Aspose.Cellsを使用してシートの背景を設定する
以下のコードは、ストリームから画像を使用して背景画像を設定します。
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-.NET | |
// Create a new Workbook. | |
Workbook workbook = new Workbook(); | |
// Get the first worksheet. | |
Worksheet sheet = workbook.Worksheets[0]; | |
// Set the background image for the worksheet. | |
sheet.BackgroundImage = File.ReadAllBytes("background.jpg"); | |
// Save the Excel file | |
workbook.Save("outputBackImageSheet.xlsx"); | |
// Save the HTML file | |
workbook.Save("outputBackImageSheet.html", SaveFormat.Html); |