Welcome to the forum, The search box top right is switched on and fully working, members are more willing to help those who have tried to do something. The forum hold a huge searchable data base of questions and answers.
Hi there
Here is my code for insert image to Excel which is from google:
/// <summary>
/// Add an image to XLSXPage
/// </summary>
/// <param name="page"></param>
/// <param name="img"></param>
/// <param name="x"></param>
/// <param name="y"></param>
public void AddImageToPage(XLSXPage page, REImage img, float x, float y)
{
page.AddImage(img, x, y, null);
}
You can have a try.