Hi,
I run the following code
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using Aspose.Slides;
namespace quotes
{
public class Program
{
static void Main(string[] args)
{
Presentation PP_Save = new Aspose.Slides.Presentation(@"C:\Temp\Quote bug\Presentation_Slide_ENGUS_1.ppt");
Presentation PP_Temp = new Aspose.Slides.Presentation(@"C:\Temp\Quote bug\A_Rational_Proven_Foundation_ENG_2.ppt");
SortedList sList = new SortedList();
PP_Temp.CloneSlide(PP_Temp.GetSlideByPosition(1), PP_Save.Slides.LastSlidePosition + 1, PP_Save, sList);
PP_Save.Write(@"C:\Temp\Quote bug\pres.ppt");
}
}
}
And the output slide is not correct as some characters are displayed in the incorrect font.
Please note that instantiating PP_Save as
new Aspose.Slides.Presentation();
gives the proper slide though
Thanks
Emmanuel