Re: Écrire à l'envers
Mickaël Wolff a écrit :
> Sergio a écrit :
>
>> Moi je veux quelque chose comme ça (scan d'un livre) :
>
> J'avais bien compris, c'est pourquoi j'avais dit qu'on peut pas faire
> mieux.
et pas mieux avec ça :
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="400px" height="150px"
xmlns="http://www.w3.org/2000/svg">
<desc>Exemple Imbrication - Transformations imbriquees</desc>
<g transform="translate(50,90)">
<text x="0" y="0" font-size="16" font-family="Courier" >
....Translation(1)
</text>
</g>
<g transform="translate(222,93)">
<g transform="rotate(180)">
<text x="0" y="0" font-size="16" font-family="Courier"
fill="#777" >
(1)noitalsnarT....
</text>
</g>
</g>
</svg>
|