Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i want to add image in excel sheet using coding so i use below method to do this and it's work fine but now i want to pass image file in format of iTextSharp.text.Image in place of string(imagename) so is it possible or any way to achieve this ?
C#
worksheet.Shapes.AddPicture(string, left, top, width, height); 
Posted
Updated 11-Mar-13 5:07am
v2

1 solution

No, you can't. Why? See this: http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.shapes.addpicture%28v=office.11%29.aspx[^]

Save iTextSharp.Text.Image as image on hard disk and than add it to Excel sheet (passing full path of image).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900