Jim wrote:
> Hello Holger,
> 
> Thanks for the link to the application.
> 
> I am trying to capture hundreds of software screens that have to be 
> saved, rendered and/or exported to SVG format.
> 
> I am looking for a way to get pixel to vector conversion or straight 
> vector conversion from a video card.  Or, perhaps there is a way to 
> display a pixel screen in a special custom browser that could snap 
> each row of pixels to vector format.

    Once the drawing has gone to pixels the vector nature is
essentially totally lost.  However if you are using Java for your
application, Batik has something called the SVGGraphics2D which is
an implementation of the Java Drawing interface that will capture
the drawing commands as vectors.  So when you call drawRect it
generates a rect element instead of drawing to the screen.  When
call drawString it creates a text element, etc.

    So if you have a Java Swing application you could use this
to draw your various Java components (menu's etc) to the
SVGGraphics2D and get fairly high quality SVG out.

> If you know of any tools that can accomplish this, please let me 
> know. I have seen tools that save screens to SVG and the result was 
> a .png file that was wrapped in SVG code.

    This us the best you can do for the most part once you have
pixels instead of drawing primitives.
> 
> I need a "TRUE" SVG right from the source, so that I can have 
> computer menu screens that are scalable (in both directions) without 
> pixelating and getting blurry.
> 
> Any feedback on this issue is very much appreciated.



------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a 
href="http://us.ard.yahoo.com/SIG=12hq6f8dt/M=362335.6886445.7839731.1510227/D=groups/S=1706030389:TM/Y=YAHOO/EXP=1122736971/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOO&cmpgn=GRP&RTP=http://groups.yahoo.com/";>In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!</a>.</font>
--------------------------------------------------------------------~-> 

-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to