PrintBorderTemplate for Branding Image on Print

Hi!

I want an Image on the Bottom of the Print out… is this the way to go?
There is an Image property but it doesnt seem to work … :/

DataTemplate x:Key=“PrintBorderTemplate”>
go:SpotPanel


            <!-- footer -->
            <StackPanel go:SpotPanel.Spot="MiddleBottom"
            go:SpotPanel.Alignment="MiddleTop">
                <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
                                     <Image source="my_image.bmp" />
                </StackPanel>
               
            </StackPanel>
        </go:SpotPanel>
    </DataTemplate>

Yes, that’s right, but the Image element doesn’t work with BMP files. I suggest using PNG instead.

By the way, the StackPanel elements seem superfluous, unless you mean to add more elements.