Aspose.Slide for .net 将wps编辑的ppt转换成图片时,标题和正文会有黑色的边框

////c# 代码如下

 Aspose.Slides.Presentation ppt = null;
                    try
                    {
                        ppt = new Aspose.Slides.Presentation(filePath);<a class="attachment" href="/uploads/default/5236">testFile.zip</a> (59.7 KB)

                    }


 // Console.WriteLine(">>>>>>>>>>开始将ppt转换为png图片>>>>>>>>>>");
                    for (int index = 0; index < PageLen; index++)
                    {
                        //Access the first slide
                        ISlide sld = ppt.Slides[index];
                        //Create a full scale image
                        var bmp = sld.GetThumbnail(ScaleX, ScaleY);
                        bmp.SetResolution(128, 128);
                        //Save the image to disk in JPEG format
                        bmp.Save(imgPath + string.Format(fileName + "_" + "{0}.jpeg", index.ToString("0000")), System.Drawing.Imaging.ImageFormat.Jpeg);

                        var bmp_s = sld.GetThumbnail(ScaleX_s, ScaleY_s);
                        bmp_s.SetResolution(128, 128);
                        //Save the image to disk in JPEG format
                        bmp_s.Save(imgPath + string.Format(fileName + "_" + "{0}" + "_s.jpeg", index.ToString("0000")), System.Drawing.Imaging.Ima<a class="attachment" href="/uploads/default/5236">testFile.zip</a> (59.7 KB)
geFormat.Jpeg);

                    }
                    //Console.WriteLine(">>>>>>>>>>ppt图片转换完成>>>>>>>>>>");

@polyv.net,

我已经观察到您分享的问题,并要求您提供源代码呈现以及生成的输出以供比较和发布详细信息。请分享所要求的信息,以便我们在这方面进一步帮助您。

TestFile (1).zip (59.7 KB)
可以看看我提供的源文件嘛,当转成图片时文字部分会有黑色的边框出现。

@polyv.net,

我已经与您分享的演示文稿一起工作,并且能够观察文本占位符周围的黑色边框。 在我们的问题跟踪系统中创建了ID SLIDESNET-39246的问题,以进一步调查问题。 此线程已与问题相关联,以便在问题解决后可能会自动通知您。