aspose.word 页脚插入图片图片浮动

                    if (builder.MoveToBookmark("FooterImgPath") && !string.IsNullOrEmpty(imgPath)&& System.IO.File.Exists(imgPath))
                    {
                        //页脚插入图片浮动
                        Shape shape = builder.InsertImage(imgPath,146,35);
                        shape.BehindText=false;
                        shape.WrapType=WrapType.None;                        
                        shape.Top = 20;
                        //进行水平居中
                        shape.HorizontalAlignment=HorizontalAlignment.Right;
                        shape.VerticalAlignment=VerticalAlignment.Center;                                         
                    }
寻寻觅觅转流年,磕磕碰碰道缘浅。 揽几缕、轻挽起,暮暮朝朝与君语。
原文地址:https://www.cnblogs.com/bingshao/p/15573010.html