<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
        <fo:simple-page-master page-width="150mm" page-height="110mm" master-name="sample">
            <fo:region-body border="solid" region-name="xsl-region-body"/>
        </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="sample">
        <fo:flow flow-name="xsl-region-body">
            <fo:block line-height="0pt">
                <fo:external-graphic src="url(Images/spots.jpg)"  display-align="center" text-align="center"
                    content-width="scale-to-fit" width="100%" content-height="scale-to-fit" height="100%"/>
            </fo:block>
        </fo:flow>
    </fo:page-sequence>
</fo:root>

