Workaround:
void radGridView1_PrintCellFormatting(object sender, PrintCellFormattingEventArgs e)
{
if (e.Column is GridViewImageColumn && e.Row is GridViewDataRowInfo)
{
e.PrintCell.DrawFill = true;
if (radGridView1.PrintStyle.PrintAlternatingRowColor && e.Row.Index % 2 == 1)
{
e.PrintCell.BackColor = radGridView1.PrintStyle.AlternatingRowColor;
}
else
{
e.PrintCell.BackColor = radGridView1.PrintStyle.CellBackColor;
}
}
}