Who can i do it in IE or Netscape, with Adobe plugin?

TIA
Nelson

-----Original Message-----
From: Thomas DeWeese [mailto:[EMAIL PROTECTED]]
Sent: Sexta-feira, 21 de Junho de 2002 15:08
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; Nelson Louren�o
Subject: Re: Re: Set Zoom


> Just set the renderingtransform with a custom affine transform
> something like
> this:
>
> AffineTransform transform = new AffineTransform();
> transform.scale( 1.2, 1.2 );
> JSVGCanvas.setRenderingTransform( transform );
>
>> I have a svg and i want see in browser with a zoom factor of 1.2,
>> what i have to do?

     If you don't want to do it programatically you can also
do it using the svg viewbox URL fragment.  Something like:

batikLogo.svg#svgView(viewBox(100,50,100,200))

    Which will show the region [100,50]->[200,250] in
batikLogo.svg, or:

batikLogo.svg#svgView(transform(scale(1.2)))

    Which will scale batikLogo.svg by 1.2.  See the SVG spec for
more information.  This is a really cool feature of SVG!


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to