翻譯|使用教程|編輯:張瑩心|2021-11-10 10:35:33.710|閱讀 487 次
概述:有時(shí)在完成 Excel 工作簿后,您可能需要用更好的圖片替換一些現(xiàn)有圖片,以使工作簿更具吸引力和說(shuō)服力。在本教程中,您將學(xué)習(xí)如何使用Spire.XLS for .NET替換Excel 中的圖片。
# 界面/圖表報(bào)表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
Spire.XLS for .NET 是一款專業(yè)的 .NET Excel 組件, 它可以用在各種.NET 框架中,包括 .NET Core、ASP.NET 和 Windows Forms 等相關(guān)的.NET 應(yīng)用程序。
有時(shí)在完成 Excel 工作簿后,您可能需要用更好的圖片替換一些現(xiàn)有圖片,以使工作簿更具吸引力和說(shuō)服力。在本教程中,您將學(xué)習(xí)如何使用Spire.XLS for .NET替換Excel 中的圖片。
*這么優(yōu)秀的國(guó)產(chǎn)工具怎能錯(cuò)過呢!在線下單專享“一口價(jià)”,立即購(gòu)買!想要獲取更多福利的朋友可以哦~
在 Excel 中替換圖片
以下是使用 Spire.XLS for .NET 將一張圖片替換為另一張圖片的詳細(xì)步驟。
using Spire.Xls; using Spire.Xls.Collections; using System.Drawing; namespace ReplacePictureinExcel { class Program { static void Main(string[] args) { //Create a Workbook instance Workbook workbook = new Workbook(); //Load the Excel file workbook.LoadFromFile (“Input.xls”); //Get the first sheet Worksheet sheet = workbook.Worksheets[0]; //Get Excel picture collection PicturesCollection pictureCollection = sheet.Pictures; //Get the first picture from the collection ExcelPicture excelPicture = pictureCollection[0]; // Creates an Image from the specified file. excelPicture.Picture = Image.FromFile (image); //Save the document workbook.SaveToFile("ReplaceImage.xlsx", ExcelVersion.Version2013); } } }VB.NET
Imports Spire.Xls Imports Spire.Xls.Collections Imports System.Drawing Namespace ReplacePictureinExcel Class Program Private Shared Sub Main(args As String()) 'Create a Workbook instance Dim workbook As New Workbook() 'Load the Excel file workbook.LoadFromFile(Input.xls) 'Get the first sheet Dim sheet As Worksheet = workbook.Worksheets(0) 'Get Excel picture collection Dim pictureCollection As PicturesCollection = sheet.Pictures 'Get the first picture from the collection Dim excelPicture As ExcelPicture = pictureCollection(0) ' Creates an Image from the specified file. excelPicture.Picture = Image.FromFile(image) 'Save the document workbook.SaveToFile("ReplaceImage.xlsx", ExcelVersion.Version2013) End Sub End Class End Namespace
原始文件:
生成的文件:
慧都是E-iceblue官方友好合作伙伴,如果您對(duì)spire.xls,可以了解具體授權(quán)價(jià)格和使用機(jī)制
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請(qǐng)務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請(qǐng)郵件反饋至chenjj@fc6vip.cn