Hi,

On Sun, 2006-07-30 at 23:15 -0700, Sudhakar S wrote:
> Hi Tonny Kohar,
> 
> > You can convert the svg (vector> by using <svg> tag. 
> > For raster graphics (jpeg,png) you can use base64 for the byte array. 
> 
> Is it possible to do it only while exporting the SVG document into SVG
> file?. I cant change the image attributes values while creating the
> document. because i may lead to quality loss when zoomin/zoomout. Also it
> must not affect the current SVG document while converting it using
> Base64EncoderStream. 

For embedded svg, the doc will look like this
<svg>
        <svg id="refSVG">
        ....
        </svg>
        <use xlink:href="#refSVG" width="300px" height="200px" />
        ...
</svg>

Because it is still using svg (vector) the zoom will not affect it at
all, it is still scalable.

Base64 is used only for raster referenced image, but for svg referenced
image, you does not need to use base64 (embedded svg tag is preferable)

Regards
Tonny Kohar
-- 
Sketsa 
SVG Graphics Editor
http://www.kiyut.com


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

Reply via email to