I'm making a simple report which includes a few lines of text and an image. Generating text works fine, but when I try to add an image I always get the error in the subject line. My current code to add an image to a .pdf is this: Report report = new Report(new PdfFormatter()); FontDef fd = new FontDef(report, "Helvetica"); FontProp fp = new FontPropMM(fd, 25); Page page = new Page(report); page.AddMM(20, 25, new RepImageMM (@"C:\Users\public\pictures\sample pictures\Carconvert.jpg", 40, Double.NaN));...