Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/oop/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 打开XML SDK-AddImagePart-将图像位置从/media更改为/word/media_C#_Image_Openxml_Google Drive Api_Openxml Sdk - Fatal编程技术网

C# 打开XML SDK-AddImagePart-将图像位置从/media更改为/word/media

C# 打开XML SDK-AddImagePart-将图像位置从/media更改为/word/media,c#,image,openxml,google-drive-api,openxml-sdk,C#,Image,Openxml,Google Drive Api,Openxml Sdk,我试图使用OpenXMLSDK2.5从C#向文档中插入一个图像。该文档随后将上载到Google Drive并转换为Google文档 我目前使用的方法是将图像插入文件层次结构的/media文件夹。但是,驱动器仅在图像位于/word/media文件夹中时才希望读取图像 在Microsoft Word中打开文档并再次保存,会将图像重新定位到/Word/media文件夹(并更新零件关系),从而使驱动器能够读取图像,但文件在上载到驱动器之前不会在Word中编辑 除了在Open XML SDK中关闭文件、将

我试图使用OpenXMLSDK2.5从C#向文档中插入一个图像。该文档随后将上载到Google Drive并转换为Google文档

我目前使用的方法是将图像插入文件层次结构的
/media
文件夹。但是,驱动器仅在图像位于
/word/media
文件夹中时才希望读取图像

在Microsoft Word中打开文档并再次保存,会将图像重新定位到
/Word/media
文件夹(并更新零件关系),从而使驱动器能够读取图像,但文件在上载到驱动器之前不会在Word中编辑


除了在Open XML SDK中关闭文件、将其作为zip存档打开、重新定位图像并手动更新关系之外,是否有其他方法将图像放置在
/word/media
文件夹中?

使用Open XML SDK 2.5将图像添加到
/word/media
文件夹中 您必须自己为映像创建包部件。
MainDocumentPart
类的
AddImagePart()
成员函数 始终将图像存储在
/media
文件夹中

下面的代码显示了如何将图像插入
/word/media
文件夹 使用以下步骤:

  • 创建一个路径Uri设置为
    /word/media
    PackagePart
  • 将图像数据馈送到包部件中
  • 为图像创建一个
    packagerelationship
  • 使用
    packagerelationship
    的ID引用中的图像 word文档 我已经复制了
    AddImageToBody()
    函数的代码 从这个网站

    当然,如果您想添加其他图像类型(例如PNG),您必须更改
    内容类型。

    非常感谢您-它工作得非常好。它不如调用AddImagePart那么漂亮,但它确实胜过了open-as-a-zip方法。非常感谢这个解决方案。这为我解决了一个邮件问题,OpenXML生成的电子邮件附件导致邮件消失在空白中。应用此修复程序后,将成功发送带有docx附件的邮件。
    static void Main(string[] args)
    {
      InsertAPicture("mydoc.docx", "mypic.jpg");      
    }
    
    public static void InsertAPicture(string document, string fileName)
    {
      using (WordprocessingDocument wordprocessingDocument =
          WordprocessingDocument.Open(document, true))
      {
        MainDocumentPart mainPart = wordprocessingDocument.MainDocumentPart;
    
        Uri imageUri = new Uri("/word/media/" +
          System.IO.Path.GetFileName(fileName), UriKind.Relative);
    
        // Create "image" part in /word/media
        // Change content type for other image types.
        PackagePart packageImagePart = 
          wordprocessingDocument.Package.CreatePart(imageUri, "Image/jpeg");
    
        // Feed data.
        byte[] imageBytes = File.ReadAllBytes(fileName);
        packageImagePart.GetStream().Write(imageBytes, 0, imageBytes.Length);
    
        PackagePart documentPackagePart = 
          mainPart.OpenXmlPackage.Package.GetPart(new Uri("/word/document.xml", UriKind.Relative));
    
        Console.Out.WriteLine(documentPackagePart.Uri);
    
        // URI to the image is relative to releationship document.
        PackageRelationship imageReleationshipPart = documentPackagePart.CreateRelationship(
              new Uri("media/" + System.IO.Path.GetFileName(fileName), UriKind.Relative),
              TargetMode.Internal, "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");
    
        AddImageToBody(wordprocessingDocument, imageReleationshipPart.Id);
      }
    }
    
    private static void AddImageToBody(WordprocessingDocument wordDoc, string relationshipId)
    {
      var element =
           new Drawing(
               new DW.Inline(
                   new DW.Extent() { Cx = 990000L, Cy = 792000L },
                   new DW.EffectExtent()
                   {
                     LeftEdge = 0L,
                     TopEdge = 0L,
                     RightEdge = 0L,
                     BottomEdge = 0L
                   },
                   new DW.DocProperties()
                   {
                     Id = (UInt32Value)1U,
                     Name = "Picture 1"
                   },
                   new DW.NonVisualGraphicFrameDrawingProperties(
                       new A.GraphicFrameLocks() { NoChangeAspect = true }),
                   new A.Graphic(
                       new A.GraphicData(
                           new PIC.Picture(
                               new PIC.NonVisualPictureProperties(
                                   new PIC.NonVisualDrawingProperties()
                                   {
                                     Id = (UInt32Value)0U,
                                     Name = "New Bitmap Image.jpg"
                                   },
                                   new PIC.NonVisualPictureDrawingProperties()),
                               new PIC.BlipFill(
                                   new A.Blip(
                                       new A.BlipExtensionList(
                                           new A.BlipExtension()
                                           {
                                             Uri =
                                               "{28A0092B-C50C-407E-A947-70E740481C1C}"
                                           })
                                   )
                                   {
                                     Embed = relationshipId,
                                     CompressionState =
                                     A.BlipCompressionValues.Print
                                   },
                                   new A.Stretch(
                                       new A.FillRectangle())),
                               new PIC.ShapeProperties(
                                   new A.Transform2D(
                                       new A.Offset() { X = 0L, Y = 0L },
                                       new A.Extents() { Cx = 990000L, Cy = 792000L }),
                                   new A.PresetGeometry(
                                       new A.AdjustValueList()
                                   ) { Preset = A.ShapeTypeValues.Rectangle }))
                       ) { Uri = "http://schemas.openxmlformats.org/drawingml/2006/picture" })
               )
               {
                 DistanceFromTop = (UInt32Value)0U,
                 DistanceFromBottom = (UInt32Value)0U,
                 DistanceFromLeft = (UInt32Value)0U,
                 DistanceFromRight = (UInt32Value)0U,
                 EditId = "50D07946"
               });
    
      wordDoc.MainDocumentPart.Document.Body.AppendChild(
        new DocumentFormat.OpenXml.Wordprocessing.Paragraph(
          new DocumentFormat.OpenXml.Wordprocessing.Run(element)));
    }