Posted 13 July 2021, 2:01 am EST
Hello,
when i have da wordDocument (2007) with an image and i use the follwing Code: GcWordDocument.SetLicenseKey(licenseKeyWord); try { var wordDoc = new GcWordDocument(); wordDoc.Load(WordDoc); using (var layout = new GcWordLayout(wordDoc)) { PdfOutputSettings pdfo = new PdfOutputSettings(); pdfo.CompressionLevel = CompressionLevel.Fastest; // save the whole document as PDF layout.SaveAsPdf(PDFDoc, null, pdfo); } return PDFDoc; } catch (Exception ex) { MessageBox.Show(“Error:” + ex.InnerException); return “”; throw; } everthing is fine in VS2017. Within my Application the Image (JPEG) ist missing and instead there is a Red Cross. What is missing? I am using the latest Version of Document for Words and Document for PDF (Vers. 4)
Mike MItchell