Hi,
this is a bug of current version of IEvolution. Please try following workaround: just after RenderToGraphics() call e.Graphics.ReleaseHdc(). For example:
...
w := trunc(e.PageBounds.Width /100*e.Graphics.DPIX);
img.RenderToGraphics(e.Graphics,0,0,w,h,0,0,img.Width,img.Height,255,IEResampleFilter.FastLinear,RenderOperation.Normal);
e.Graphics.ReleaseHdc();
e.Graphics.DrawString('INDIV Nummer: ' + SomeInstanceVar + ' - VPC: 58506',f,brushes.Black,150,80);
...