Slide Background image changed on insert

I have a slide with a background image that when added to my presentation with aspose slides the bottom of the image gets messed up.

see the attached .ppt files:
right.ppt is the template as it is given to aspose.slides and wrong.ppt is what the slide looks like after adding text to the text areas and being returned by aspose.slides

thanks,

-Jabin

Dear Jabin,

Thanks for considering Aspose.Slides.

I think, it has been fixed in latest version of Aspose.Slides for .NET 3.1.1.1
Please see the code below and output presentation which has been attached by me for your reference.

C#

Presentation pres = new Presentation(@"C:\Test\right.ppt");
Slide sld = pres.GetSlideByPosition(1);

foreach (Shape shp in sld.Shapes)
{
    Paragraphs paras = null;
    if (shp.Placeholder != null && shp.IsTextHolder)
    {
        TextHolder thld = (TextHolder)shp.Placeholder;
        paras = thld.Paragraphs;
    }
    else
    {
        TextFrame tf = shp.TextFrame;
        paras = tf.Paragraphs;
    }

    Paragraph para = paras[0];

    Portion port = para.Portions[0];
    port.Text = port.Text.Replace("", "title stuff");
    port.Text = port.Text.Replace("", "company stuff");
    port.Text = port.Text.Replace("", "Friday, June 19, 2009");

    Console.WriteLine(paras[0].Text);
}

pres.Write("c:\\test\\out.ppt");