Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!

using (var image = Image.FromFile(Target.Text) as Bitmap)
{
var range = Range[Cells[2, 2], Cells[image.Height + 2, image.Width + 2]] as Excel.Range;
range.ColumnWidth = 1.0 / 12; // магия, для столбцов и колонок используются разные единицы измерения
range.RowHeight = 1.0;
for (int rowIndex = 0; rowIndex < image.Height; rowIndex++)
{
for (int colIndex = 0; colIndex < image.Width; colIndex++)
{
var cell = Range[Cells[rowIndex + 2, colIndex + 2], Cells[rowIndex + 2, colIndex + 2]] as Excel.Range;
cell.Interior.Color = ColorTranslator.ToOle(image.GetPixel(colIndex, rowIndex));
}
}
}для столбцов и колонок

Рисунки в MS Excel при помощи Apache POI