Probléme with image in word

Good morning


I use a word template to print a form, in this form I have an image with little transparency.


When I print a single form, everything works, however when I print several forms on the same word.


I am using c# application.

Thank you


Attachment: error_image_988695b8.zip

5 Replies

SR Sindhu Ramesh Syncfusion Team February 18, 2025 02:46 PM UTC

Hi Aitbouhou,
Based on the given details and documents, we suspect that you are attempting to merge the same document multiple times into a Word document. We performed the same operation using the ImportContent functionality in DocIO. In the output document, image transparency was preserved correctly on our end.

Kindly review the attached sample on your side. If you still encounter any issues, kindly share a modified issue reproducible sample.

For more details about merging documents, kindly refer the
UG: Merge Word documents in C# | DocIO | Syncfusion

Regards,
Sindhu Ramesh.


Attachment: Mergemultipledocumentswithimage_a6f15b6.zip


AA Aitbouhou Adam February 21, 2025 03:59 PM UTC

Hello 


Thank you for you replay 


This my code that i use for my application.


------------------------------------------------------------------------

                                WordDocument concatDoc = null;

                                //concat

                                foreach (Dictionary<string, object> dic in data)

                                {

                                    using (var doc = new WordTemplater(fileFullPath))

                                    {

                                        var insensiveData = new Dictionary<string, object>();

                                        if (dic != null)

                                        {

                                            insensiveData = new Dictionary<string, object>(dic);

                                        }

                                        doc.SetData(insensiveData, beginExp, endExp);

                                        try

                                        {

                                            var wordDocument = doc.GenerateDoc(host, user);


                                            if (concatDoc == null)

                                            {

                                                concatDoc = wordDocument.Clone();

                                            }

                                            else

                                            {

                                                WSection sec = (WSection)concatDoc.Sections.LastItem;

                                                //sec.BreakCode = SectionBreakCode.NewPage;

                                                IWParagraph paragraph = sec.AddParagraph();

                                                paragraph.AppendBreak(BreakType.PageBreak);

                                                foreach (IEntity child in wordDocument.ChildEntities)

                                                {

                                                    IEntity cl = child.Clone();

                                                    concatDoc.ChildEntities.Add(cl);

                                                }

                                            }

                                        }

                                        catch

                                        {

                                            //do nothing

                                        }

                                    }

                                }

                                //ddesmons 20230705 fix SonarQube : Bugs major

                                if (returnNativeFormat.HasValue && returnNativeFormat.Value)

                                {

                                    try

                                    {

                                        if (concatDoc != null)

                                        {

                                            concatDoc.Save(stream, FormatType.Docx);

                                            concatDoc.Close();

                                        }

                                    }

                                    catch

                                    {

                                        //do nothing

                                    }

                                }

                                else

                                {

                                    using (DocIORenderer render = new DocIORenderer())

                                    {

                                        render.Settings.ChartRenderingOptions.ImageFormat = Syncfusion.OfficeChart.ExportImageFormat.Jpeg;

                                        render.Settings.EmbedFonts = true;

                                        render.Settings.EmbedCompleteFonts = true;

                                        using (PdfDocument pdfDocument = render.ConvertToPDF(concatDoc))

                                        {

                                            pdfDocument.Save(stream);

                                        }

                                    }

                                }

  public WordDocument GenerateDoc(string host, User user)

  {

      WordDocument doc = Template.Clone();

      doc.FontSettings.SubstituteFont += FontSettings_SubstituteFont;

      ChildBuilder.WordDoc = doc;

      ChildBuilder.Host = host;

      ChildBuilder.User = user;


      if (Data.Count > 0)

      {

          var sections = SectionBuilder.CutInSections(ref doc, false);

          if (sections.Count > 0)

          {

              var lstAdd = new List<WSection>();

              var lstRemove = new List<WSection>();

              foreach (WSection sec in doc.Sections)

              {

                  var part = sections.FirstOrDefault(s => s.Item2 == sec);

                  if (part != null)

                  {

                      lstRemove.Add(sec);

                      if (string.IsNullOrEmpty(part.Item1))

                      {

                          var section = SectionBuilder.CompletSection(sec, Data);

                          lstAdd.Add(section);

                      }

                      else

                      {

                          bool bTry = true;

                          object dataTemp = Data;

                          foreach (string strKey in part.Item1.Split('.'))

                          {

                              if (dataTemp is IDictionary<string, object> && ((IDictionary<string, object>)dataTemp).TryGetValue(strKey, out dataTemp))

                                  continue;

                              bTry = false;

                          }


                          //if (this.Data.TryGetValue(part.Item1, out object data))

                          if (bTry)

                          {

                              IEnumerable<IDictionary<string, object>> lst = GetListDictionnaryFromObj(dataTemp);

                              foreach (var d in lst)

                              {

                                  var section = SectionBuilder.CompletSection(sec, d);

                                  lstAdd.Add(section);

                              }

                          }

                      }


                  }

              }

              foreach (var s in lstRemove)

              {

                  doc.Sections.Remove(s);

              }

              foreach (var s in lstAdd)

              {

                  doc.Sections.Add(s);

              }

          }


          //Replacement des propriété

          CompletProperties(ref doc);

          Template = doc;

      }

      return doc;

  }

Have a good day 


Attachment: DocumentEditor_b058f283.zip


SR Sindhu Ramesh Syncfusion Team February 24, 2025 01:45 PM UTC

Aitbouhou,
From the given class files, we checked the resave functionality and Word-to-PDF conversion. Below are our observations.

Regarding “Transparency not preserved in DOCX document”:
The provided class file contains multiple methods and variables, but some of their values used in processing document entities are missing, making it non-runnable. We extracted the relevant methods from the class file and created a sample, which is working on our end. Kindly share a runnable sample that you are using or modify the sample to reproduce the issue so that we can replicate the issue at the earliest.

Regarding “Transparency not preserved in Word to PDF Conversion”:
Currently, we do not support transparency of the picture. For this, we have logged a feature request titled "Provide support to preserve transparent picture in Word to PDF and Image conversions" in our database. Currently, we don’t have any immediate plan to implement this in our end. We will let you know when this feature is implemented.

The status of the feature can be tracked through link:
Provide support to preserve transparent picture in Word to PDF and Image conversions in WinForms | Feedback Portal


Attachment: Processdocumentwithimage_8206a09f.zip


AA Aitbouhou Adam February 24, 2025 09:27 PM UTC

Good morning


I don't want to convert a word to pdf, I just want to create a word from another word template which contains the image,



SR Sindhu Ramesh Syncfusion Team February 25, 2025 02:33 PM UTC

Aitbouhou,
We noticed that the attached sample contains some compilation errors, which prevent us from running it as expected. To assist you more effectively, could you please provide a modified version that compiles successfully? This will help us replicate the issue more accurately and provide a better solution.


Attachment: ProcessandgenerateDOCXdocument_6f08c4d0.zip

Loader.
Up arrow icon