« Return to Thread: Generate two files

RE: Generate two files

by Alexandre Moraes :: Rate this Message:

Reply to Author | View in Thread

Thanks Vladimir,it helped me a lot but i still have a problem.
This watermark is dynamic and it should change on every element chapter.

This is an example:

<book>
 <chapter tool="001" pn="80" type="TDS">
    <title>Title1</title>
     <tlsect type="PNU" toolnbr="001" sectnbr="80">
        <title>asdasdasdUSE</title>
          <para>Para 1</para>
     </tlsect>
 </chapter>

 <chapter tool="002" pn="440" type="asdS">
    <title>Title2</title>
     <tlsect type="PNU" toolnbr="001" sectnbr="80">
        <title>asdasdasdUSE</title>
          <para>Para 2</para>
     </tlsect>
 </chapter>
</book>

 I can generate a separete pdf file with another xsl:fo file and then put this pdf like background of the fo:block. It works but I´ll have to make more steps. I was trying to generate an svg image in the same xsl:fo, like you do in your example, and put it in the fo:block background. Not in the region-before because the image is dynamic. I tryed something but it didn´t work.

If you have any idea.

Thanks for now...

Alexandre

Vladimir Rodimyuk wrote:
Alexandre,
You can put your SVG image in block-container with position="absolute" in some static region (e.g. xsl-region-before).

<fo:static-content flow-name="xsl-region-before">
    <fo:block-container absolute-position="absolute"
        top="4.25in" left="0.5in" width="7.5in"
        height="2.5in">
        <fo:block>
            <fo:instream-foreign-object width="100%" height="100%"
                content-width="scale-to-fit" content-height="scale-to-fit"
                scaling="uniform">
                <svg:svg width="7.5in" height="2.5in" viewBox="0 0 200 50">
                    <svg:rect fill="#AFA" fill-opacity=".2" x="0" y="0"
                        width="200"
                        height="50" rx="5" ry="5"/>
                    <svg:text style="font-family:Helvetica; font-size:10;
                        font-weight:bold"
                        text-anchor="middle" fill="#06148E"
                        fill-opacity=".3" x="100" y="25"
                        >Watermark image</svg:text>
                </svg:svg>
            </fo:instream-foreign-object>
        </fo:block>
    </fo:block-container>
</fo:static-content>

Maybe it will be interesting for you to see similar request and whole thread:
http://www.renderx.net/lists/xep-support/3013.html

Respectfully,
Volodymyr Rodymyuk

> -----Original Message-----
> From: www-xsl-fo-request@w3.org [mailto:www-xsl-fo-request@w3.org] On
> Behalf Of axdmoraes
>     other way is if the attribute background-image has an address of an
> svg
> image generated inside the stylesheet but it didn´t work until now. But
> i´m
> trying.
> axdmoraes wrote:
> >
....
> > And I have a xsl:fo to format this file. But I need to show the chapter
> > attributes:tool, pn and type like a watermark behind the text. Then I
> need
> > to generate a pdf file with this information and put it like a
> background
> > in the first pdf.
> >
> > Like the picture.

 
 

 « Return to Thread: Generate two files