Using MigraDoc, if I insert a new paragraph that only contains an image, there is extra space added after the image within the paragraph. Here is an example that demonstrates the issue:
var document = new Document();
var section = document.AddSection();
var paragraph = section.AddParagraph();
paragraph.Format.Shading.Color = Colors.Yellow;
var image = paragraph.AddImage("MyImage.gif");
The result of the above code is that I have an image with approximately two pixels of yellow below it. How do I remove this yellow portion of the containing paragraph?