So I found the answer ... I saved the copied pages to an array and then had to add the image to each copied page
foreach (var page in copiedPages)
{
page.Canvas.DrawImage(results.Item2, results.Item1.Left, results.Item1.Top, results.Item1.Width, results.Item1.Height);
}