~ubuntu-branches/ubuntu/raring/z3c.rml/raring-201302251714

« back to all changes in this revision

Viewing changes to src/z3c/rml/tests/input/rml-examples-034-cmyk.rml

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2011-01-05 22:34:45 UTC
  • Revision ID: james.westby@ubuntu.com-20110105223445-wkcn61jbbuqid38s
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE document SYSTEM "rml_1_0.dtd"> 
 
2
<document filename="test_034_cmyk.pdf" invariant="1">
 
3
<docinit>
 
4
        <color id="CMYK_WHITE" RGB="PCMYKColor(100, 100, 100, 0)"/>
 
5
        <color id="CMYK_BLACK" RGB="PCMYKColor(0, 0, 0, 100)"/>
 
6
</docinit>
 
7
 
 
8
<template pageSize="letter" leftMargin="72" showBoundary="1">
 
9
        <pageTemplate id="main" pageSize="A4">
 
10
        <pageGraphics>
 
11
                <setFont name="Helvetica-BoldOblique" size="18"/>
 
12
                <drawRightString x="523" y="800">RML2PDF Test Suite</drawRightString>
 
13
                <fill color="[1,0,0,0]"/>
 
14
                <rect x="100" y="600" width="50" height="50" fill="1"/>
 
15
                <fill color="[0,1,0,0]"/>
 
16
                <rect x="200" y="600" width="50" height="50" fill="1"/>
 
17
                <fill color="[0,0,1,0]"/>
 
18
                <rect x="300" y="600" width="50" height="50" fill="1"/>
 
19
                <fill color="PCMYKColor(0,50,85,20,spotName='PANTONE 288 CV')"/>
 
20
                <rect x="400" y="600" width="50" height="50" fill="1"/>
 
21
        </pageGraphics>
 
22
        <frame id="first" x1="1in" y1="3in" width="6.27in" height="3in"/>
 
23
        </pageTemplate>
 
24
</template>
 
25
 
 
26
<stylesheet>
 
27
        <paraStyle name="normal" fontName="Helvetica" fontSize="10" leading="12" textColor="[0,0,0,1]"/>
 
28
        <paraStyle name="h1" parent="normal" fontName="Helvetica-BoldOblique" fontSize="32" leading="36"/>
 
29
        <paraStyle name="spaced" parent="normal" spaceBefore="12" spaceAfter="12"/>
 
30
</stylesheet>
 
31
 
 
32
<story>
 
33
        <para style="normal">This is a test of CMYK support.
 
34
        </para>
 
35
        <para style="normal">The four swatches above should be in the CMYK primaries, and the paragraph carefully
 
36
        declares the text color to be process black (k=1).
 
37
        </para>
 
38
        <spacer length="6"/>
 
39
        <para style="normal">This is cmyk white text on cmyk black rectangle</para>
 
40
        <spacer length="6"/>
 
41
        <illustration height="15" width="144">
 
42
                <setFont name="Helvetica-Bold" size="12"/>
 
43
                <fill color="CMYK_BLACK"/>
 
44
                <rect x="0" y="0" width="144" height="15" fill="yes" stroke="no"/>
 
45
                <fill color="CMYK_WHITE"/>
 
46
                <drawString x="1" y="4">Hello World</drawString>
 
47
        </illustration>
 
48
        <spacer length="6"/>
 
49
        <para style="normal">This is rgb white text on rgb black rectangle</para>
 
50
        <spacer length="6"/>
 
51
        <illustration height="15" width="144">
 
52
                <setFont name="Helvetica-Bold" size="12"/>
 
53
                <fill color="black"/>
 
54
                <rect x="0" y="0" width="144" height="15" fill="yes" stroke="no"/>
 
55
                <fill color="white"/>
 
56
                <drawString x="1" y="4">Hello World</drawString>
 
57
        </illustration>
 
58
        <spacer length="6"/>
 
59
        <para style="normal">This is rgb white text on cmyk black rectangle</para>
 
60
        <spacer length="6"/>
 
61
        <illustration height="15" width="144">
 
62
                <setFont name="Helvetica-Bold" size="12"/>
 
63
                <fill color="CMYK_BLACK"/>
 
64
                <rect x="0" y="0" width="144" height="15" fill="yes" stroke="no"/>
 
65
                <fill color="white"/>
 
66
                <drawString x="1" y="4">Hello World</drawString>
 
67
        </illustration>
 
68
        <spacer length="6"/>
 
69
        <para style="normal">This is cmyk white text on rgb black rectangle</para>
 
70
        <spacer length="6"/>
 
71
        <illustration height="15" width="144">
 
72
                <setFont name="Helvetica-Bold" size="12"/>
 
73
                <fill color="black"/>
 
74
                <rect x="0" y="0" width="144" height="15" fill="yes" stroke="no"/>
 
75
                <fill color="CMYK_WHITE"/>
 
76
                <drawString x="1" y="4">Hello World</drawString>
 
77
        </illustration>
 
78
</story>
 
79
 
 
80
</document>