Hello,
in my application I have subclassed the MigraDoc Image class. If I add an instance of the class to a section everything works fine. However, if I add it to a paragraph, the image does not display. This can be seen using the following class
Code:
class ImageSub: Image{
public ImageSub(string path) : base(path) {}
}
The MDDDL files generated by using the above subclass and by using the Image class are identical, so this seems like a bug in the rendering code. Is there any way to work around this limitation? I am using the GDI+ version of MigraDoc.