Layflat Photo Albums

Layflat albums require a few variantions compared to a standard photobook to deal with the single spread vs 2 pages. Firstly, there's defining the line break on the spread and also a small adjustment to pricing formulas.

The sample below is for a layflat that doesn't have a printed cover.

<definition pages="10" min="10" max="40" add="1" dpi="300" output="vector" minimum-dpi="200" trimbox="true">
    
    <layers>
        <layer name="artwork" visibility="on"/>
        <layer name="guides" visibility="on"/>
        <layer name="cropmarks" visibility="fulfillment"/>
    </layers>
    
    <set count="false">
        <captions>
            <left>Back Cover</left> <right>Front Cover</right>
        </captions>
        <page type="cover" position="left-right" bleed="0" width="547" height="260" margin="0" />
    </set>  
    
    <set grow="true">
        <captions>
            <left>Page {{n}}</left> <right>Page {{n}}</right>
        </captions>  
        <page type="spread01, spread02, spread03, spread04, spread05" position="left-right" bleed="5" margin="5" width="508" height="257">
            <filter type="binding-layflat" />
        </page>
    </set>

</definition>

Last updated