[svg-developers] Re: svg# documentation or tutorial

2005-11-21 Thread Jim Ley
simjobe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Do you have any idea when the 0.4 alpha will be ready? And would you advise against using it for a real world solution? Having played with SVG# it's very good, I would say that you will not want to consider using it for a

[svg-developers] Re: Dynamic SVG creation using ASP Firefox

2005-11-21 Thread quentingroom
--- In svg-developers@yahoogroups.com, Martin Honnen [EMAIL PROTECTED] wrote: Many thanks, that seems to have worked. Quentin If that is classic ASP with VBScript then use Response.ContentType = image/svg+xml to set the HTTP Content-Type of the response you are creating. That line should

[svg-developers] Please say how is it possible to convert from gif to svg

2005-11-21 Thread Nikolya Patskov
Hi all, please say how is it possible to convert from gif to svg? Yahoo! Groups Sponsor ~-- Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/1U_rlB/TM

RE: [svg-developers] Please say how is it possible to convert from gif to svg

2005-11-21 Thread Geoffrey Swenson
If you want to convert a gif to SVG vector objects, then you are somewhat screwed. There are bitmap to vector conversion programs such as adobe Streamline and the Corel Trace (bundled with CorelDraw), but they don't work very well in large part. I also found this, by searching on google:

Re: [svg-developers] Please say how is it possible to convert from gif to svg

2005-11-21 Thread Ronan Oger
use a vectorising solution. Pure: 1/ map the pixels and group by colour 2/ approximate down to N colours, getting rid of noise 3/ draw regions 4/ done. Trick: 1/ Translate to jpeg or png 2/ embed in an SVG document using an image / tag 3/ deliver. Still pixelated but scalable. On Monday 21

RE: [svg-developers] Please say how is it possible to convert from gif to svg

2005-11-21 Thread david dailey
At 11:17 AM 11/21/2005, you wrote: If you want to convert a gif to SVG vector objects, then you are somewhat screwed. There are bitmap to vector conversion programs such as adobe Streamline and the Corel Trace (bundled with CorelDraw), but they don't work very well in large part. I also found

Re: [svg-developers] Please say how is it possible to convert from gif to svg

2005-11-21 Thread Ronan Oger
There is also this for conversion: htp://www.roitsystems.com/cgi-bin/r2v/tracer.pl Works quite well for clearly defined images, badly for high-noise images. based on autotrace. On Monday 21 November 2005 18:18, david dailey wrote: At 11:17 AM 11/21/2005, you wrote: If you want to convert a

[svg-developers] SharpVectorGraphics (aka SVG#) releases 0.4 alpha

2005-11-21 Thread Jeff Rafter
SharpVectorGraphics (aka SVG#), the C# SVG implementation has released a new alpha version available at SourceForge. Some of the new features and enhancements from v0.3.1 include: * Interactivity * Events * Rendering Updates * Rendering to HDC * Scripting * Source

Re: [svg-developers] SharpVectorGraphics (aka SVG#) releases 0.4 alpha

2005-11-21 Thread Jeff Rafter
Looks like the links got stripped from the last email: Download: http://sourceforge.net/project/showfiles.php?group_id=46621 Summary Page: http://sourceforge.net/projects/svgdomcsharp/ Mailing list: http://lists.sourceforge.net/lists/listinfo/svgdomcsharp-developers

[svg-developers] Easy nooby question...svg

2005-11-21 Thread Jatinder
I have a svg document what is has very large dimensionsi.e my main root svg tag is width 4000px and height 5000px(approx..cant remember the actual size)...in other words the whole thing has huge dimensions. The problem is that i have to give a preview of the svg on my weppage ...in an

[svg-developers] Re: Easy nooby question...svg

2005-11-21 Thread Andreas Neumann
you could use a viewBox attribute for that purpose: svg width=100% height=100% viewBox=0 0 4000 5000 !-- your svg content -- /svg the first two values in the viewBox attribute define the upper left corner of your current extent, the third and fourth value define the width and height. that way