Advertisement
Guest User

Untitled

a guest
May 30th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  3. <fo:layout-master-set>
  4.   <fo:simple-page-master master-name="all"
  5.         page-height="297mm" page-width="210mm"
  6.        margin-top="10mm" margin-bottom="10mm"
  7.        margin-left="10mm" margin-right="10mm">
  8.     <fo:region-body region-name="plan" margin-top="0in" margin-bottom="0in"
  9.     margin-left="1in" margin-right="0in"/>
  10.    
  11.   </fo:simple-page-master>
  12. </fo:layout-master-set>
  13. <fo:page-sequence master-reference="all">
  14.   <fo:flow flow-name="plan" font-family="Arial" font-size="40pt">
  15. <fo:block>
  16.         <fo:instream-foreign-object content-height="200mm">
  17.         <svg xmlns="http://www.w3.org/2000/svg" width="150mm" height="200mm">
  18.  
  19.         <radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="60mm" cy="70mm" r="50mm" fx="60mm" y="70mm">  
  20.             <stop stop-color="blue" offset="0"/>
  21.             <stop stop-color="green" offset="0.4"/>
  22.             <stop stop-color="yellow" offset="0.6"/>
  23.             <stop stop-color="orange" offset="0.8"/>
  24.             <stop stop-color="red" offset="1.0"/>
  25.          </radialGradient>
  26.          <rect x="10mm" y="20mm" width="100mm" height="100mm" fill="url(#grad)" stroke-width="1mm"/>
  27.          <text font-family="Georgia" font-size="36pt" x="10mm" y="130mm"> Przykład SVG! </text>
  28.          </svg>
  29.          </fo:instream-foreign-object>
  30.   </fo:block>
  31.   </fo:flow>
  32. </fo:page-sequence>
  33. </fo:root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement